-
Notifications
You must be signed in to change notification settings - Fork 0
/
Finish.aspx
108 lines (105 loc) · 6.58 KB
/
Finish.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
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Finish.aspx.cs" Inherits="Finish" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Poshora :: Finish Order</title>
</head>
<body>
<form id="form1" runat="server">
<div style="font-weight: bold">
<asp:Image ID="Image1" runat="server" Height="149px" ImageUrl="file:///D:\Online Bookshop System\App_Data\main.bmp"
Style="left: 0px; position: absolute; top: -2px" Width="465px" />
<asp:Panel ID="Panel1" runat="server" BackColor="SkyBlue" BorderColor="SkyBlue" BorderStyle="Solid"
Height="29px" Style="left: -12px; position: absolute; top: 150px" Width="1058px">
<asp:Label ID="Label1" runat="server" Font-Size="X-Large" ForeColor="White" Text="Welcome,"></asp:Label>
<asp:Label ID="Label3" runat="server" Font-Size="X-Large" ForeColor="White" Text="Label"></asp:Label></asp:Panel>
<br />
<asp:Image ID="Image2" runat="server" ImageUrl="file:///D:\Online Bookshop System\App_Data\header.bmp" Style="left: 465px;
position: absolute; top: 0px" />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<asp:Label ID="Label2" runat="server" ForeColor="#C00000" Text="Please select a valid date."
Visible="False"></asp:Label><br />
<br />
Please select the date of delivery.
<br />
<br />
Delivery Date: <asp:Calendar ID="Calendar1" runat="server" BackColor="White"
BorderColor="White" BorderWidth="1px" Font-Names="Verdana"
Font-Size="9pt" ForeColor="Black" Height="190px" Width="350px" style="left: 328px; position: absolute; top: 256px" NextPrevFormat="FullMonth">
<SelectedDayStyle BackColor="#333399" ForeColor="White" />
<TodayDayStyle BackColor="#CCCCCC" />
<OtherMonthDayStyle ForeColor="#999999" />
<NextPrevStyle Font-Size="8pt" ForeColor="#333333" Font-Bold="True" VerticalAlign="Bottom" />
<DayHeaderStyle Font-Bold="True" Font-Size="8pt" />
<TitleStyle BackColor="White" Font-Bold="True" Font-Size="12pt" ForeColor="#333399" BorderColor="Black" BorderWidth="4px" />
</asp:Calendar>
<br />
<br />
<br />
<br />
<asp:Button ID="finish_button" runat="server" Height="34px" OnClick="finish_button_Click"
Text="Finish" Width="111px" style="left: 373px; position: absolute; top: 479px" Font-Bold="True" /><br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
</form>
</body>
</html>