-
Notifications
You must be signed in to change notification settings - Fork 8
/
UpdateLibraryFee.aspx
56 lines (44 loc) · 1.72 KB
/
UpdateLibraryFee.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
<%@ Page Language="C#" MasterPageFile="~/adminMaster.master" AutoEventWireup="true" CodeFile="UpdateLibraryFee.aspx.cs" Inherits="UpdateLibraryFee" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width: 351px">
<tr>
<td align="left" style="height:55px; width: 92px;" valign="top">
<h3>
Update Library Fee
</h3>
</td>
</tr>
<tr>
<td style="width: 92px">
<asp:Label ID="Label1" runat="server" Text="Roll No:"></asp:Label></td>
<td style="width: 158px">
<asp:TextBox ID="txtID" runat="server" Width="126px"></asp:TextBox>
</td>
<td>
<asp:Button ID="Button2" runat="server" Text="Submit" onclick="Button1_Click" />
</td>
</tr>
<tr>
<td style="height: 11px; width: 92px;">
<asp:Label ID="Label2" runat="server" Text="Library Fee:"></asp:Label></td>
<td style="width: 158px">
<asp:TextBox ID="TextBox1" runat="server">0</asp:TextBox></td>
</td>
</tr>
<tr>
<td style="height: 11px; width: 92px;">
<asp:Label ID="Label4" runat="server" Text="Amount to be updated:"></asp:Label></td>
<td style="width: 158px">
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 92px">
<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>