Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. <table>
  2. <tbody>
  3. <tr>
  4. <td><b>Please enter your information:</b></td></tr>
  5.  
  6. </tr>
  7. <tr>
  8. <td>
  9. <asp:Label ID="Label1" runat="server" Text="First Name:"></asp:Label>
  10. <asp:TextBox ID="firstNameTextBox" runat="server"> </asp:TextBox>
  11. </td>
  12. </tr>
  13. <tr>
  14. <td>
  15. <asp:Label ID="Label2" runat="server" Text="Last Name:"></asp:Label>
  16. <asp:TextBox ID="lastNameTextBox" runat="server"> </asp:TextBox>
  17.  
  18. </td>
  19. </tr>
  20. <tr>
  21. <td>
  22.  
  23. <asp:Label ID="Label3" runat="server" Text="Address:"></asp:Label>
  24. <asp:TextBox ID="addressTextBox" runat="server"> </asp:TextBox>
  25.  
  26. </td>
  27. </tr>
  28. <tr>
  29. <td>
  30.  
  31. <asp:Label ID="Label4" runat="server" Text="Cell Phone Number:"></asp:Label>
  32. <asp:TextBox ID="cellPhoneNumberTextBox" runat="server"> </asp:TextBox>
  33.  
  34. </td>
  35. </tr>
  36. <tr>
  37. <td>
  38.  
  39. <asp:Label ID="Label5" runat="server" Text="Home Phone Number:"></asp:Label>
  40. <asp:TextBox ID="homePhoneNumberTextBox" runat="server"> </asp:TextBox>(optional)
  41.  
  42. </td>
  43. </tr>
  44. <tr>
  45. <td>
  46.  
  47. <asp:Label ID="Label6" runat="server" Text="Username:"></asp:Label>
  48. <asp:TextBox ID="usernameTextBox" runat="server"> </asp:TextBox>
  49.  
  50. </td>
  51. </tr>
  52. <tr>
  53. <td>
  54.  
  55. <asp:Label ID="Label7" runat="server" Text="Password:"></asp:Label>
  56. <asp:TextBox ID="passwordTextBox" runat="server"> </asp:TextBox>
  57.  
  58. </td>
  59. </tr>
  60. <tr>
  61. <td>
  62.  
  63. <asp:Label ID="Label8" runat="server" Text="Verify Password:"></asp:Label>
  64. <asp:TextBox ID="verifyPasswordTextBox" runat="server"> </asp:TextBox>
  65.  
  66. </td>
  67. </tr>
  68. <tr>
  69. <td>
  70. <asp:Button ID="signupButton" runat="server" Text="Sign Up" OnClick="signupButton_Click"></asp:Button>
  71. </td>
  72. </tr>
  73. <tr>
  74. <td>
  75. <asp:Label ID="errorLabel" runat="server" Text=""></asp:Label>
  76. </td>
  77. </tr>
  78. <tr>
  79. <td>
  80. <asp:HyperLink
  81. ID="HyperLink1"
  82. visible="false"
  83. runat="server"
  84. Text="Go to Homepage"
  85. NavigateUrl="~/Homepage.aspx"
  86. >
  87. </asp:HyperLink>
  88. </td>
  89. </tr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement