forked from lethienantran/MenuManagementService
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CheckoutPage.aspx
87 lines (70 loc) · 3.52 KB
/
CheckoutPage.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CheckoutPage.aspx.cs" Inherits="SelfOrderManagementSystem.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link rel="stylesheet" type="text/css" href="OrderMenuStyleSheet.css" />
<link rel="stylesheet" type="text/css" href="StyleSheet.css" />
</head>
<body>
<form id="form1" runat="server">
<div class="topNav">
 
<asp:Button ID="backButton" runat="server" Text="Go Back" Class="customerButton" OnClick="backButton_Click" />
</div>
<div class ="PriceSummaryTable">
<asp:Label ID="totalPrice" runat="server" style="font-size: 35px;" Text="Total: $"></asp:Label>
<asp:Button ID="submitOrderButton" runat="server" style="font-size: 20px;" Text="Submit Order" class="submitOrderButton" OnClick="submitOrderButton_Click"/>
</div>
<%--
<div class="centerDiv">
<asp:Table ID="Table1" runat="server" class="doubleCheckTable">
<asp:TableHeaderRow>
<asp:TableCell style="width: 55%" class="headerCell"> Item</asp:TableCell>
<asp:TableCell style="width: 20%;" class="headerCell">Quantity</asp:TableCell>
<asp:TableCell style="width: 20%;" class="headerCell">Price</asp:TableCell>
<asp:TableCell style="width: 10%;" class="headerCell">Delete</asp:TableCell>
</asp:TableHeaderRow>
<asp:TableRow>
<asp:TableCell class ="itemCell">Big Mac</asp:TableCell>
<asp:TableCell class ="itemCell">
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Text="0" value="0"></asp:ListItem>
<asp:ListItem Text="1" value="1"></asp:ListItem>
<asp:ListItem Text="2" value="2"></asp:ListItem>
<asp:ListItem Text="3" value="3"></asp:ListItem>
<asp:ListItem Text="4" value="4"></asp:ListItem>
</asp:DropDownList>
</asp:TableCell>
<asp:TableCell class ="itemCell">$10.00</asp:TableCell>
<asp:TableCell style="text-align: center">
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/trashImage/3058-200.png" Height="17px" Width="17px" ImageAlign="Middle" />
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>Test</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>LAST</asp:TableCell>
</asp:TableRow>
</asp:Table>
</div>
<div class="checkoutDiv">
<table class="checkOutTable">
<tr>
<td>
<asp:Label ID="orderPriceLabel" runat="server" Text="Total: " Style="color:Black; font-size: 30px; text-align:right"></asp:Label>
</td>
</tr>
<tr>
<td >
<br/>
<asp:Button ID="submitOrderButton" runat="server" Text="Submit Order" class ="checkOutButton" />
</td>
</tr>
</table>
</div>
--%>
</form>
</body>
</html>