Advertisement
Guest User

Untitled

a guest
Feb 1st, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <div id="registerNewFood">
  2. <br />
  3. <h2>Register New Food</h2>
  4. <asp:Label ID="regFoodNameLbl" runat="server" Text="Name: "></asp:Label>
  5. <asp:TextBox ID="regFoodNameTxt" runat="server"></asp:TextBox>
  6. <br />
  7. <asp:Label ID="regFoodCalLbl" runat="server" Text="Cal: "></asp:Label>
  8. <asp:TextBox ID="regFoodCalTxt" runat="server"></asp:TextBox>
  9. <br />
  10. <asp:Label ID="regFoodProteinLbl" runat="server" Text="Protein: "></asp:Label>
  11. <asp:TextBox ID="regFoodProteinTxt" runat="server"></asp:TextBox>
  12. <br />
  13. <asp:Label ID="regFoodFatLbl" runat="server" Text="Fat: "></asp:Label>
  14. <asp:TextBox ID="regFoodFatTxt" runat="server"></asp:TextBox>
  15. <br />
  16. <asp:Label ID="regFoodCarbsLbl" runat="server" Text="Carbs: "></asp:Label>
  17. <asp:TextBox ID="regFoodCarbsTxt" runat="server"></asp:TextBox>
  18. <br />
  19. <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
  20. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement