Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. namespace Leden
  2. {
  3. public class Leden
  4. {
  5. public Leden() { }
  6.  
  7. public int Lidnummer { get; set; }
  8. public string VoorNaam { get; set; }
  9. public string AchterNaam { get; set; }
  10. public Boolean Geslacht { get; set; }
  11. public string Leeftijd { get; set; }
  12. public string gewicht {get; set;}
  13. public string Presentje {get; set; }
  14. public DateTime AanmeldDatum { get; set; }
  15. }
  16. }
  17.  
  18. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Aanmelden.aspx.cs" Inherits="Leden.Aanmelden" %>
  19.  
  20. <!DOCTYPE html>
  21.  
  22. <html xmlns="http://www.w3.org/1999/xhtml">
  23. <head runat="server">
  24. <title></title>
  25. </head>
  26. <body>
  27. <form id="form1" runat="server">
  28. <div>
  29. <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><asp:Button ID="Button1" runat="server" Text="MeldAan" OnClick="Button1_Click" />
  30. </div>
  31. </form>
  32. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement