-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCart.aspx
42 lines (40 loc) · 1.59 KB
/
Cart.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
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Cart.aspx.cs" Inherits="WompomPizza.Cart1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<style type="text/css">
.auto-style1 {
margin-left: 40px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="mainContent" runat="server">
<div>
<table class="nav-justified">
<tr>
<td colspan="3">
<asp:ListBox ID="lstCart" runat="server" Width="595px"></asp:ListBox>
</td>
</tr>
<tr>
<td class="auto-style1">
<asp:Button ID="btnRemove" runat="server" Text="Remove Item" OnClick="btnRemove_Click1" />
<asp:Button ID="btnEmpty" runat="server" Text="Empty Cart" OnClick="btnEmpty_Click1" />
<br />
<asp:Label ID="lblMessage" runat="server"></asp:Label>
<br />
<br />
<br />
</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td class="auto-style1">
<asp:Button ID="btnCheckOut" runat="server" Text="Check Out" OnClick="btnCheckOut_Click1" PostBackUrl="~/OrderConfirmation.aspx" />
<asp:Button ID="btnContinue" runat="server" PostBackUrl="~/Order.aspx" Text="Continue Shopping" />
</td>
<td> </td>
<td> </td>
</tr>
</table>
</div>
</asp:Content>