Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. <%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Identification_Form.aspx.cs" Inherits="Identification_Form" %>
  2.  
  3. <asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
  4. </asp:Content>
  5. <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
  6. <h1>Identification Form </h1>
  7. <p>
  8. Age :
  9. <asp:TextBox ID="tb_Age" runat="server"></asp:TextBox>
  10. &nbsp;years old
  11. </p>
  12. <p>
  13. Current Height :
  14. <asp:TextBox ID="tb_CurrentHeight" runat="server"></asp:TextBox>
  15. &nbsp;m
  16. </p>
  17. <p>
  18. Current Weight :
  19. <asp:TextBox ID="tb_CurrentWeight" runat="server"></asp:TextBox>
  20. &nbsp;kg</p>
  21. <p>
  22. Workout Goals :
  23. <asp:DropDownList ID="ddl_WorkoutGoals" runat="server" Width="273px">
  24. <asp:ListItem>Lose Weight</asp:ListItem>
  25. <asp:ListItem>Bulk</asp:ListItem>
  26. <asp:ListItem>Lean</asp:ListItem>
  27. <asp:ListItem>Get Fit</asp:ListItem>
  28. </asp:DropDownList>
  29. </p>
  30. <p>
  31. <asp:Button ID="btn_Submit" runat="server" OnClick="btn_Submit_Click" Text="Submit" Width="147px" />
  32. </p>
  33. </asp:Content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement