-
Notifications
You must be signed in to change notification settings - Fork 0
/
busfee.aspx
80 lines (78 loc) · 10.9 KB
/
busfee.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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="busfee.aspx.cs" Inherits="School_Management_System.busfee" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
font-weight: bold;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div style="width: 1366px; height: 704px; background-color: #FFFF66;">
<asp:Panel ID="Panel1" runat="server" BackColor="#000066" Font-Bold="True" Font-Size="X-Large" ForeColor="White" Height="90px" Width="1366px">
<br />
LOYOLA PRIMARY SCHOOL</asp:Panel>
<br />
<asp:Panel ID="Panel2" runat="server" BackColor="White" Height="224px" style="margin-left: 290px" Width="755px">
<br />
<asp:Label ID="Label1" runat="server" style="font-weight: 700" Text="BUS FEE PAYMENT"></asp:Label>
<br />
<br />
<br />
<asp:Label ID="Label2" runat="server" style="font-weight: 700" Text="Registration Number"></asp:Label>
<asp:TextBox ID="regno_txtbx" runat="server" Height="28px" Width="149px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="regno_txtbx" ErrorMessage="*Enter Registration Number" ForeColor="Red"></asp:RequiredFieldValidator>
<br />
<br />
<asp:Button ID="sub_btn" runat="server" Height="34px" OnClick="sub_btn_Click" Text="Submit" Width="86px" CssClass="auto-style1" />
<asp:Button ID="home_btn" runat="server" CssClass="auto-style1" Height="35px" OnClick="home_btn_Click" Text="Back to Homepage" Width="121px" CausesValidation="False" />
<br />
<br />
<asp:Label ID="sts_lbl" runat="server" Text="sts_lbl" Visible="False"></asp:Label>
</asp:Panel>
<br />
<br />
<asp:Panel ID="fee_panel" runat="server" Height="244px" style="margin-left: 288px" Width="755px" Visible="False" BackColor="White">
<br />
<asp:Label ID="Label4" runat="server" style="font-weight: 700" Text="Name:"></asp:Label>
<asp:Label ID="name_lbl" runat="server" Text="res_name"></asp:Label>
<br />
<br />
<asp:Label ID="Label11" runat="server" style="font-weight: 700" Text="Area:"></asp:Label>
<asp:Label ID="area_lbl" runat="server" Text="res_area"></asp:Label>
<br />
<br />
<asp:Label ID="Label13" runat="server" style="font-weight: 700" Text="Fare:"></asp:Label>
<asp:Label ID="fare_lbl" runat="server" Text="res_fare"></asp:Label>
<br />
<br />
<asp:Button ID="pay_btn" runat="server" Text="Pay" OnClick="pay_btn_Click" Height="34px" Width="86px" CssClass="auto-style1" />
<asp:Button ID="cancel_btn" runat="server" Text="Cancel" Height="34px" OnClick="cancel_btn_Click" Width="86px" CssClass="auto-style1" />
<br />
<br />
<asp:Label ID="fres_lbl" runat="server" Text="sts_lbl" Visible="False"></asp:Label>
</asp:Panel>
<br />
</div>
</form>
</body>
</html>