Advertisement
Guest User

html 4.2

a guest
Apr 1st, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 1.74 KB | None | 0 0
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
  2. <!--------------------- MODULE HEADER --------------------
  3. Opdracht: 4.2
  4. Auteur: Jari Graus
  5. Aanmaakdatum: 26-03-2019 + 10:50
  6. Bestandsnaam: Default.aspx.
  7. Versie: 1.0
  8. ----------------------------------------------------------->
  9. <!DOCTYPE html>
  10.  
  11. <html xmlns="http://www.w3.org/1999/xhtml">
  12. <head runat="server">
  13.     <title></title>
  14. </head>
  15. <body>
  16.     <form id="form1" runat="server">
  17.         <div style="float: left;">
  18.             <h1>Inschrijven</h1>
  19.             <asp:TextBox ID="tbName" runat="server"></asp:TextBox>
  20.             <asp:RadioButtonList ID="rblVH" runat="server">
  21.             <asp:ListItem Value="V">Vraag stellen</asp:ListItem>
  22.             <asp:ListItem Value="H">Huiswerk opleveren</asp:ListItem>
  23.             </asp:RadioButtonList>
  24.         <asp:Button ID="btnReg" runat="server" Text="Aanmelden" OnClick="btnReg_Click" />
  25.             <asp:Label ID="lblAdded" runat="server" Text=""></asp:Label>
  26.             <asp:Label ID="lblWaiting" runat="server" Text=""></asp:Label>
  27.         </div>
  28.         <div style="float: right">
  29.             <h1>Wachtlijst</h1>
  30.             <asp:RadioButtonList ID="rblShow" runat="server" AutoPostBack="True" OnSelectedIndexChanged="rblShow_SelectedIndexChanged">
  31.                 <asp:ListItem Value="True" Selected="True">Weergeven</asp:ListItem>
  32.                 <asp:ListItem Value="False">Verbergen</asp:ListItem>
  33.             </asp:RadioButtonList>
  34.             <asp:Panel ID="pnlWaitingList" runat="server">
  35.                 <h1>Inschrijvingen</h1>
  36.                 <asp:Literal ID="ltrlWaitingList" runat="server"></asp:Literal>
  37.             </asp:Panel>
  38.         </div>
  39.        
  40.     </form>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement