-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChip-request.aspx
More file actions
40 lines (39 loc) · 1.71 KB
/
Chip-request.aspx
File metadata and controls
40 lines (39 loc) · 1.71 KB
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
<%@ Page Language="C#" MasterPageFile="~/lib/MasterPage.master" AutoEventWireup="true" CodeFile="Chip-request.aspx.cs" Inherits="Chip_request" %>
<asp:Content ID="MainContent" runat="server" ContentPlaceHolderID="MainContent">
<div>
<h2>Chip Request Form</h2>
</div>
<div>
<table>
<tr>
<td>
<asp:Label ID="lblResults" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td><asp:Label ID="lblChipQuantity" runat="server" Text="Label">Quantity of Chips</asp:Label></td>
</tr>
<tr>
<td>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString='<%$ ConnectionStrings:ChipDrop %>' SelectCommand="SELECT [qty_id], [description] FROM [ChipQty]"></asp:SqlDataSource>
<asp:DropDownList ID="ddlChipQuantity" runat="server" DataSourceID="SqlDataSource1" DataTextField="description" DataValueField="qty_id"></asp:DropDownList>
</td>
</tr>
<tr>
<td><asp:Label ID="lblDateAvailable" runat="server">Date Available</asp:Label></td>
<td><asp:Label ID="lblDateExpire" runat="server">Date Expire</asp:Label></td>
</tr>
<tr>
<td>
<asp:Calendar ID="cldDateAvailable" runat="server"></asp:Calendar>
</td>
<td>
<asp:Calendar ID="cldDateExpire" runat="server"></asp:Calendar>
</td>
</tr>
<tr>
<td><asp:Button ID="Button1" runat="server" Text="Submit" OnClick="Button1_Click" /></td>
</tr>
</table>
</div>
</asp:Content>