-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdminShoppingCart.aspx
32 lines (30 loc) · 1.18 KB
/
AdminShoppingCart.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
<%@ Page Title="" Language="C#" MasterPageFile="~/Admin.master" AutoEventWireup="true"
CodeFile="AdminShoppingCart.aspx.cs" Inherits="AdminShoppingCart" %>
<asp:Content ID="Content1" ContentPlaceHolderID="titlePlaceHolder" runat="Server">
<span class="AdminTitle">
BalloonShop Admin
<br />
Shopping Carts
</span>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="adminPlaceHolder" runat="Server">
<p>
<asp:Label ID="countLabel" runat="server">Hello!
</asp:Label></p>
<p>
<span>How many days?</span>
<asp:DropDownList ID="daysList" runat="server">
<asp:ListItem Value="0">All shopping carts</asp:ListItem>
<asp:ListItem Value="1">One</asp:ListItem>
<asp:ListItem Value="10" Selected="True">Ten</asp:ListItem>
<asp:ListItem Value="20">Twenty</asp:ListItem>
<asp:ListItem Value="30">Thirty</asp:ListItem>
<asp:ListItem Value="90">Ninety</asp:ListItem>
</asp:DropDownList>
</p>
<p>
<asp:Button ID="countButton" runat="server" Text="Count Old Shopping Carts"
onclick="countButton_Click" />
<asp:Button ID="deleteButton" runat="server" Text="Delete Old Shopping Carts" />
</p>
</asp:Content>