-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathordersummary.aspx
More file actions
141 lines (117 loc) · 6.48 KB
/
Copy pathordersummary.aspx
File metadata and controls
141 lines (117 loc) · 6.48 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<%@ Page Title="" Language="VB" MasterPageFile="~/Site.master" AutoEventWireup="false" CodeFile="ordersummary.aspx.vb" Inherits="ordersummary" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat="Server">
<div>
<br />
<asp:Label ID="Label3" runat="server"
Text="Choose a order no. to know the status:"></asp:Label>
<asp:DropDownList ID="DropDownList1" runat="server"
DataSourceID="SqlDataSource2" DataTextField="ordno" DataValueField="ordno"
Height="20px" Width="131px">
</asp:DropDownList>
<asp:Button
ID="Button4" runat="server" Text="Back" BackColor="#284775" Font-Bold="True"
Font-Size="Medium" ForeColor="White" Width="122px" />
<br />
<asp:SqlDataSource ID="SqlDataSource2" runat="server"
ConnectionString="<%$ ConnectionStrings:vgdbConnectionString %>"
SelectCommand="SELECT DISTINCT [ordno] FROM [sales]"></asp:SqlDataSource>
<asp:Button
ID="Button1" runat="server" Text="view" BackColor="#284775" Font-Bold="True"
Font-Size="Medium" ForeColor="White" Width="122px" />
<asp:Button ID="Button3" runat="server" Text="Go to Reports"
BackColor="#284775" Font-Bold="True" Font-Size="Medium" ForeColor="White" />
<br />
<br />
<br />
<div style="position: absolute; left: 200px">
<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1"
AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333"
GridLines="None" BackColor="#284775" Height="200px" Width="605px">
<AlternatingRowStyle BackColor="White" ForeColor="#284775" />
<Columns>
<asp:BoundField DataField="billno" HeaderText="billno"
SortExpression="billno" />
<asp:BoundField DataField="ordno" HeaderText="ordno" SortExpression="ordno" />
<asp:BoundField DataField="sid" HeaderText="sid" SortExpression="sid" />
<asp:BoundField DataField="pid" HeaderText="pid" SortExpression="pid" />
<asp:BoundField DataField="prate" HeaderText="prate" SortExpression="prate" />
<asp:BoundField DataField="bdt" HeaderText="bdt" SortExpression="bdt" />
<asp:BoundField DataField="amount" HeaderText="amount"
SortExpression="amount" />
<asp:BoundField DataField="status" HeaderText="status"
SortExpression="status" />
</Columns>
<EditRowStyle BackColor="#999999" />
<FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
<SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#E9E7E2" />
<SortedAscendingHeaderStyle BackColor="#506C8C" />
<SortedDescendingCellStyle BackColor="#FFFDF8" />
<SortedDescendingHeaderStyle BackColor="#6F8DAE" />
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:vgdbConnectionString %>"
SelectCommand="SELECT * FROM [sales_tmp]"></asp:SqlDataSource>
<br />
<br />
<asp:DropDownList ID="DropDownList2" runat="server" Height="22px" Width="130px">
<asp:ListItem>processing</asp:ListItem>
<asp:ListItem>out for delivery</asp:ListItem>
<asp:ListItem>delivered</asp:ListItem>
<asp:ListItem>cancelled</asp:ListItem>
</asp:DropDownList>
<asp:Button ID="Button2" runat="server" Text="update" BackColor="#284775"
Font-Bold="True" Font-Size="Medium" ForeColor="White" Width="127px" />
<br />
</div>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
</asp:Content>