-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathupdateTutionFee.aspx
More file actions
63 lines (50 loc) · 1.59 KB
/
updateTutionFee.aspx
File metadata and controls
63 lines (50 loc) · 1.59 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
55
56
57
58
59
60
61
<%@ Page Language="C#" MasterPageFile="~/adminMaster.master" AutoEventWireup="true" CodeFile="updateTutionFee.aspx.cs" Inherits="updateTutionFee" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table>
<tr>
<td align="left" style="height:70px;" valign="top">
Update Tution Fee
</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>
<asp:Button id="btnText0" Text="Submit" runat="server" OnClick="btnText_Click" />
</td>
<td>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label2" runat="server" Text="Tution Fee Due:"></asp:Label></td>
<td>
<asp:TextBox ID="TextBox1"
runat="server"></asp:TextBox></td>
</tr>
<tr>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label4" runat="server" Text="Amount to pay"></asp:Label> </td>
<td>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</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="ref0" runat="server" ControlToValidate="txtID">
</asp:RequiredFieldValidator>
</td>
</tr>
</table>
</asp:Content>