-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathUpdateAdmissionFee.aspx
More file actions
55 lines (45 loc) · 1.52 KB
/
UpdateAdmissionFee.aspx
File metadata and controls
55 lines (45 loc) · 1.52 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
45
46
47
48
49
50
51
52
53
54
<%@ Page Language="C#" MasterPageFile="~/adminMaster.master" AutoEventWireup="true" CodeFile="UpdateAdmissionFee.aspx.cs" Inherits="UpdateAdmissionFee" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table>
<tr>
<td align="left" style="height:70px;" valign="top">
<h3>
Update Admission 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="Admission Fee:"></asp:Label></td>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></td>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label3" runat="server" Text="Amount to be updated:"></asp:Label></td>
<td>
<asp:TextBox ID="TextBox2" 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:Button id="btnText" Text="Submit" runat="server" OnClick="btnText_Click" />
<asp:RequiredFieldValidator ID="ref" runat="server" ControlToValidate="txtID">
</asp:RequiredFieldValidator>
</td>
</tr>
</table>
</asp:Content>