-
Notifications
You must be signed in to change notification settings - Fork 0
/
RoomDetail.aspx
89 lines (85 loc) · 10.4 KB
/
RoomDetail.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="RoomDetail.aspx.cs" Inherits="Schoolmanagementsystem.RoomDetail" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
height: 690px;
}
.auto-style2 {
margin-left: 315px;
margin-top: 51px;
}
.auto-style3 {
height: 690px;
font-weight: bold;
}
.auto-style4 {
font-weight: bold;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div class="auto-style1" style="background-color: #FFFF66">
<asp:Panel ID="Panel2" runat="server" BackColor="#000066" Font-Bold="True" Font-Size="X-Large" ForeColor="White" Height="90px" Width="1366px">
<br />
LOYOLA PRIMARY SCHOOL</asp:Panel>
<br />
<br />
<br />
<asp:Panel ID="Panel3" runat="server" BackColor="White" Height="438px" style="margin-left: 220px" Width="853px">
<br />
<asp:Label ID="Label1" runat="server" Text="ROOM DETAILS" style="font-weight: 700"></asp:Label>
<br />
<br />
<br />
<asp:Label ID="Label2" runat="server" Text="Room Type" style="font-weight: 700"></asp:Label>
<asp:DropDownList ID="type_dpdown" runat="server" Height="25px" Width="89px">
<asp:ListItem>Silver</asp:ListItem>
<asp:ListItem>Platinum</asp:ListItem>
<asp:ListItem>Gold</asp:ListItem>
<asp:ListItem>All</asp:ListItem>
</asp:DropDownList>
<br />
<br />
<asp:Button ID="view_btn" runat="server" Text="View" OnClick="view_btn_Click" Height="35px" Width="70px" CssClass="auto-style4" />
<asp:Button ID="reset_btn" runat="server" Text="Reset" Height="35px" Width="70px" OnClick="reset_btn_Click" CausesValidation="False" CssClass="auto-style4" />
<asp:Button ID="back_btn" runat="server" CssClass="auto-style3" Height="35px" OnClick="back_btn_Click" Text="Back to Main Menu" Width="131px" CausesValidation="False" />
<asp:GridView ID="room_grid" runat="server" CssClass="auto-style2" Height="174px" Width="363px">
</asp:GridView>
</asp:Panel>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
</div>
</form>
</body>
</html>