-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdd_Food.aspx
More file actions
52 lines (50 loc) · 1.73 KB
/
Copy pathAdd_Food.aspx
File metadata and controls
52 lines (50 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<%@ Page Title="" Language="C#" MasterPageFile="~/HomeG.master" AutoEventWireup="true" CodeFile="Add_Food.aspx.cs" Inherits="Add_Food" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width:60%;">
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="Enter ID"></asp:Label>
</td>
<td>
<asp:TextBox ID="foodid" runat="server"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td>
<asp:Label ID="Label2" runat="server" Text="Food Name"></asp:Label>
</td>
<td>
<asp:TextBox ID="foodname" runat="server"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td>
<asp:Label ID="Label3" runat="server" Text="Price"></asp:Label>
</td>
<td>
<asp:TextBox ID="foodprice" runat="server"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Add" Width="126px" />
</td>
<td>
<asp:Label ID="Lbl" runat="server"></asp:Label>
</td>
</tr>
</table>
</asp:Content>