-
Notifications
You must be signed in to change notification settings - Fork 8
/
UpdateBusFee.aspx
51 lines (43 loc) · 1.48 KB
/
UpdateBusFee.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
<%@ Page Language="C#" MasterPageFile="~/adminMaster.master" AutoEventWireup="true" CodeFile="UpdateBusFee.aspx.cs" Inherits="UpdateBusFee" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table>
<tr>
<td align="left" style="height:70px;" valign="top">
<h3>
Update Bus Fee
</h3>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="Roll No:"></asp:Label></td>
<td>
<asp:TextBox ID="txtID" runat="server">
</asp:TextBox></td>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label2" runat="server" Text="Bus Fee:"></asp:Label></td>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td>
<td>
</tr>
<tr>
<td><asp:Label ID="Label4" runat="server" Text="Amount to be "></asp:Label></td>
<td>
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox></td>
</td>
</tr>
<tr>
<td>
<asp:Button ID="btnChkAll" Text="Update" Visible="true" runat="server" OnClick="btnChkAll_Click" />
<asp:Label ID="lblErr" runat="server" ForeColor="red" >
</asp:Label>
<asp:RequiredFieldValidator ID="ref" runat="server" ControlToValidate="txtID">
</asp:RequiredFieldValidator>
<asp:Button id="btnText" Text="Submit" runat="server" OnClick="btnText_Click" />
</td>
</tr>
</table>
</asp:Content>