-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstadium_manager.aspx
More file actions
44 lines (40 loc) · 1.54 KB
/
Copy pathstadium_manager.aspx
File metadata and controls
44 lines (40 loc) · 1.54 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
41
42
43
44
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="stadium_manager.aspx.cs" Inherits="Database_Project.stadium_manager" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<center>
<div >
<h1 style="color:steelblue"> Stadium Manager </h1>
</div>
</center>
<hr /> <div>
<asp:Panel ID="Panel1" runat="server"></asp:Panel>
</div>
<div>
<h2>My pending requests
<asp:Button ID="reuest" runat="server" Text="View" Height="26px" Width="119px" OnClick="reuest_Click" />
</h2>
<h2>Accept/Reject a request</h2>
</div>
<div >
Host Name
<asp:TextBox ID="host" runat="server"></asp:TextBox>
Guest Name
<asp:TextBox ID="guest" runat="server" ></asp:TextBox>
Starting Time
<asp:TextBox ID="start" type="datetime-local" runat="server" ></asp:TextBox>
<asp:Button ID="accept" runat="server" Text="accept" style="height: 29px" OnClick="accept_Click" />
<asp:Button ID="Button3" runat="server" Text="reject" style="height: 29px" OnClick="Button3_Click" />
</div>
<br />
<div>
<asp:Panel ID="Panel2" runat="server"></asp:Panel>
</div>
</form>
</body>
</html>