-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewProductsDataRange.aspx
More file actions
56 lines (39 loc) · 1.71 KB
/
ViewProductsDataRange.aspx
File metadata and controls
56 lines (39 loc) · 1.71 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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ViewProductsDataRange.aspx.cs" Inherits="ABCSAMPLE.ViewProductsDataRange" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style>
body {
text-align: center;
background-color: honeydew;
}
#main {
margin-left: auto;
margin-right: auto;
text-align: left;
width: 100%;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div class ="#main">
<asp:Label ID="lblStartDate" runat="server" style="display:inline;text-align:center;" Text="Start Date:"></asp:Label>
<asp:TextBox ID="txtStartDate" TextMode="Date" runat="server"></asp:TextBox>
<p>
<asp:Label ID="lblEndDate" runat="server" Text="End date:"></asp:Label>
<asp:TextBox ID="txtEndDate" TextMode="Date" runat="server" Height="28px"></asp:TextBox>
</p>
</div>
<asp:Button ID="btnSearchBetweenUserRange" runat="server" Text="Search" ToolTip="S" OnClick="btnSearchBetweenUserRange_Click" />
<p>
<asp:Label ID="lblRangeStatus" runat="server" Text="Range"></asp:Label>
</p>
<asp:GridView ID="GridViewProducts" runat="server">
</asp:GridView>
<asp:Button ID="btnFilterDescriptionRange" runat="server" OnClick="btnFilterDescriptionRange_Click" style="margin-left: 0px" Text="Filter Through Description" />
<asp:Button ID="btnBack" runat="server" OnClick="btnBack_Click" Text="Back" Width="293px" />
</form>
</body>
</html>