-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddwatch.aspx
62 lines (58 loc) · 1.94 KB
/
addwatch.aspx
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
53
54
55
56
57
58
59
60
61
<%@ Page Title="" Language="C#" MasterPageFile="~/Home.master" AutoEventWireup="true" CodeFile="addwatch.aspx.cs" Inherits="addwatch" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.auto-style1 {
width: 53%;
height: 133px;
}
.auto-style2 {
height: 29px;
}
.auto-style3 {
width: 244px;
}
.auto-style4 {
height: 29px;
width: 244px;
}
.auto-style7 {
width: 244px;
height: 28px;
}
.auto-style8 {
height: 28px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<br />
<center><table class="auto-style1">
<tr>
<td class="auto-style3">Product Name</td>
<td>
<asp:TextBox ID="TextBox1" runat="server" Height="21px" Width="236px" BorderColor="#FF6600" autocomplete="off"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style3">Price</td>
<td>
<asp:TextBox ID="TextBox2" runat="server" Height="21px" Width="236px" BorderColor="#FF6600" autocomplete="off"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style7">Upload Product Image</td>
<td class="auto-style8">
<asp:fileupload id="FileUpload1" runat="server" />
</td>
</tr>
<tr>
<td class="auto-style4"></td>
<td class="auto-style2">
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Save Product" BorderColor="#FF6600" />
<br />
<asp:Label ID="Label3" runat="server" BorderColor="#FF6600"></asp:Label>
</td>
</tr>
</table></center>
<br />
</asp:Content>