-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebForm_AARecord.aspx
31 lines (29 loc) · 1.59 KB
/
WebForm_AARecord.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm_AARecord.aspx.cs" Inherits="BreakfastCards1.WebForm_AARecord" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>AA Record Breakfast Cards</title>
</head>
<body>
<form id="form1" runat="server">
<div>
AA Record Breakfast Cards in Last Month
</div>
<br />
<div>
Year:<asp:DropDownList ID="DropDownList_AddYear" runat="server"></asp:DropDownList>
Month:<asp:DropDownList ID="DropDownList_AddMonth" runat="server"></asp:DropDownList>
Group Name:<asp:DropDownList ID="DropDownList_AddGroupName" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList_AddGroupName_SelectedIndexChanged" ></asp:DropDownList>
The <asp:DropDownList ID="DropDownList_AddCards" runat="server"></asp:DropDownList> card
<asp:Button ID="Button_FullAttendance" runat="server" Text="Full Attendance" OnClick="Button_FullAttendance_Click" />
<asp:Button ID="Button_LostCard" runat="server" Text="Lost Card" OnClick="Button_LostCard_Click" />
<br />
<asp:CheckBoxList ID="CheckBoxList_Add" runat="server" RepeatDirection="Horizontal" RepeatLayout="Flow">
</asp:CheckBoxList>
<asp:Button ID="Button_Add" runat="server" Text="Add" OnClick="Button_Add_Click" ></asp:Button>
</div>
<asp:GridView ID="GridView1" runat="server"></asp:GridView>
</form>
</body>
</html>