-
Notifications
You must be signed in to change notification settings - Fork 0
/
BusRegistration.aspx
91 lines (89 loc) · 11 KB
/
BusRegistration.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
90
91
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BusRegistration.aspx.cs" Inherits="School_Management_System.BusRegistration" %>
<!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: 768px; 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="Panel1" runat="server" Height="502px" style="margin-left: 296px" Width="693px" BackColor="White">
<br />
<asp:Label ID="Label8" runat="server" Text="SCHOOL BUS REGISTRATION" style="font-weight: 700"></asp:Label>
<br />
<br />
<asp:Label ID="Label9" runat="server" CssClass="auto-style1" Text="Registration No"></asp:Label>
<asp:TextBox ID="reg_txtbx" runat="server" Height="25px" Width="140px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="reg_txtbx" ErrorMessage="*Enter Registration Number" ForeColor="Red"></asp:RequiredFieldValidator>
<br />
<br />
<asp:Button ID="chk_btn" runat="server" Text="Check" Height="35px" OnClick="chk_btn_Click" Width="71px" CssClass="auto-style1" />
<asp:Button ID="home_btn" runat="server" Height="37px" OnClick="home_btn_Click" Text="Back to Homepage" Width="121px" CausesValidation="False" CssClass="auto-style1" />
<br />
<br />
<asp:Label ID="sts_lbl1" runat="server" Text="sts_lbl" Visible="False"></asp:Label>
<br />
<br />
<asp:Label ID="Label10" runat="server" Text="Name" CssClass="auto-style1"></asp:Label>
<asp:TextBox ID="name_txtbx" runat="server" Enabled="False" Height="25px" Width="140px"></asp:TextBox>
<br />
<br />
<asp:Label ID="Label11" runat="server" Text="Area" CssClass="auto-style1"></asp:Label>
<asp:DropDownList ID="area_dpdown" runat="server" AutoPostBack="True" Height="20px" Width="141px">
<asp:ListItem Value="nungambakam">nungambakkam</asp:ListItem>
<asp:ListItem Value="kodambakkam">Kodambakkam</asp:ListItem>
<asp:ListItem Value="ambatur">Ambattur</asp:ListItem>
<asp:ListItem Value="annanagar">AnnaNagar</asp:ListItem>
</asp:DropDownList>
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ControlToValidate="area_dpdown" ErrorMessage="*Choose Area" ForeColor="Red"></asp:RequiredFieldValidator>
<br />
<br />
<asp:Button ID="reg_btn" runat="server" Text="Register" OnClick="reg_btn_Click" Height="35px" Width="72px" CssClass="auto-style1" />
<br />
<br />
<asp:Label ID="Label12" runat="server" Text="Fare" CssClass="auto-style1" Visible="False"></asp:Label>
<asp:Label ID="Fare_lbl" runat="server" Text="res_Fare" Visible="False"></asp:Label>
<br />
<br />
<asp:Button ID="confirm_btn" runat="server" Text="Confirm" OnClick="confirm_btn_Click" Height="34px" Visible="False" Width="71px" CssClass="auto-style1" />
<asp:Button ID="Reset_btn" runat="server" Height="34px" OnClick="Reset_btn_Click" Text="Reset" Width="71px" CausesValidation="False" CssClass="auto-style1" />
<br />
<br />
<asp:Label ID="sts_lbl2" runat="server" Text="sts_lbl" Visible="False"></asp:Label>
</asp:Panel>
</div>
</form>
</body>
</html>