Advertisement
Guest User

Untitled

a guest
Mar 21st, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. <table>
  2. <tbody>
  3. <tr>
  4. <td><b>Please update your information:</b></td></tr>
  5.  
  6. </tr>
  7. <tr>
  8. <td>
  9. <asp:Label ID="Label1" runat="server" Text="Username:"></asp:Label>
  10. <asp:Label ID="usernameLabel" runat="server"></asp:Label>
  11.  
  12. </td>
  13. </tr>
  14. <tr>
  15. <td>
  16. <asp:Label ID="Label2" runat="server" Text="First Name:"></asp:Label>
  17. <asp:TextBox ID="firstNameTextBox" runat="server"> </asp:TextBox>
  18. </td>
  19. </tr>
  20. <tr>
  21. <td>
  22. <asp:Label ID="Label6" runat="server" Text="Last Name:"></asp:Label>
  23. <asp:TextBox ID="lastNameTextBox" runat="server"> </asp:TextBox>
  24.  
  25. </td>
  26. </tr>
  27.  
  28. <tr>
  29. <td>
  30.  
  31. <asp:Label ID="Label3" runat="server" Text="Address:"></asp:Label>
  32. <asp:TextBox ID="addressTextBox" runat="server"> </asp:TextBox>
  33.  
  34. </td>
  35. </tr>
  36. <tr>
  37. <td>
  38.  
  39. <asp:Label ID="Label4" runat="server" Text="Cell Phone Number:"></asp:Label>
  40. <asp:TextBox ID="cellPhoneNumberTextBox" runat="server"> </asp:TextBox>
  41.  
  42. </td>
  43. </tr>
  44. <tr>
  45. <td>
  46.  
  47. <asp:Label ID="Label5" runat="server" Text="Home Phone Number:"></asp:Label>
  48. <asp:TextBox ID="homePhoneNumberTextBox" runat="server"> </asp:TextBox>(optional)
  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.  
  69. <tr>
  70. <td>
  71. <asp:Button ID="updateButton" runat="server" Text="Update" OnClick="updateButton_Click"></asp:Button>
  72. </td>
  73. </tr>
  74.  
  75. <tr>
  76. <td>
  77. <asp:Label ID="errorLabel" runat="server"></asp:Label>
  78. </td>
  79. </tr>
  80. <tr>
  81. <td>
  82. Click
  83. <asp:HyperLink
  84. ID="HyperLink1"
  85.  
  86. runat="server"
  87. Text="here"
  88. NavigateUrl="~/Homepage.aspx"
  89. >
  90. </asp:HyperLink> to go back to the homepage.
  91. </td>
  92. </tr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement