-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfrmProductDetails.aspx
More file actions
67 lines (62 loc) · 3.1 KB
/
frmProductDetails.aspx
File metadata and controls
67 lines (62 loc) · 3.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="frmProductDetails.aspx.cs" Inherits="ASP_ALL_In_1.frmProductDetails" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Product Details</title>
<style>
body{
background-color:azure;
}
.specif{
margin-left:150px;
}
.Panel1{
border-color:forestgreen;
border-style:solid;
}
.image{
margin-right:150px;
}
.details{
margin-right:400px;
}
#label1,#label2,#label4,#label6,#label8,#label10,#label12,#label14{
color:green;
font-size:12px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Table ID="tbldetails" runat="server" Width="800">
<asp:TableRow ID="tblRowdetails" runat="server">
<asp:TableCell ID="tblCellImage" runat="server">
<asp:Image ID="imgProduct" runat="server" CssClass="image" Height="200" Width="200"/>
</asp:TableCell>
<asp:TableCell ID="tblCelldetails" runat="server" CssClass="details">
<asp:Panel ID="Panel1" runat="server" BorderColor="#009933" BorderStyle="Solid">
<asp:Label ID="Label1" runat="server" Text="Product Cateogory : "></asp:Label>
<asp:Label ID="lblProductCate" runat="server" Text="Label"></asp:Label><br /><br />
<asp:Label ID="Label2" runat="server" Text="Product Name : "></asp:Label>
<asp:Label ID="lblProductName" runat="server" Text="Label"></asp:Label><br /><br />
<asp:Label ID="Label4" runat="server" Text="Product Model : "></asp:Label>
<asp:Label ID="lblProductModel" runat="server" Text="Label"></asp:Label><br /><br />
<asp:Label ID="Label6" runat="server" Text="Product Price : "></asp:Label>
<asp:Label ID="lblProductPrice" runat="server" Text="Label"></asp:Label><br /><br />
<asp:Label ID="Label8" runat="server" Text="Product Specification : "></asp:Label><br />
<%--<asp:Label ID="lblProductSpecif" runat="server" Text=""></asp:Label><br /><br />--%>
<asp:Label ID="Label10" runat="server" Text="Hardware Version : " CssClass="specif"></asp:Label>
<asp:Label ID="lblHardware" runat="server" Text="Label"></asp:Label><br /><br />
<asp:Label ID="Label12" runat="server" Text="Software Version : " CssClass="specif"></asp:Label>
<asp:Label ID="lblSoftware" runat="server" Text="Label"></asp:Label><br /><br />
<asp:Label ID="Label14" runat="server" Text="Sensors : " CssClass="specif"></asp:Label>
<asp:Label ID="lblSensors" runat="server" Text="Label"></asp:Label>
</asp:Panel>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
</form>
</body>
</html>