-
Notifications
You must be signed in to change notification settings - Fork 8
/
adminLeftMenu.ascx
46 lines (38 loc) · 1.55 KB
/
adminLeftMenu.ascx
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
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="adminLeftMenu.ascx.cs" Inherits="adminLeftMenu" %>
<table>
<tr>
<td>
<a href="ViewStudentDetails.aspx?From=admin" id="B1" runat="server" style="color: #8c0000; font-family: 'Eras Bold ITC'; text-decoration:none;">view student details</a>
</td>
</tr>
<tr>
<td>
<a href="InsertFeeDetails.aspx?From=admin" id="A6" runat="server" style="color: #8c0000; font-family: 'Eras Bold ITC'; text-decoration:none;">Insert Fee Details</a>
</td>
</tr>
<tr>
<td>
<a href="updatetutionfee.aspx" id="A1" runat="server" style="color: #8c0000; font-family: 'Eras Bold ITC'; text-decoration:none;">update tution fee</a>
</td>
</tr>
<tr>
<td>
<a href="updatelibraryfee.aspx" id="A2" runat="server" style="color: #8c0000; font-family: 'Eras Bold ITC'; text-decoration:none;">update library fee</a>
</td>
</tr>
<tr>
<td>
<a href="updateadmissionfee.aspx" id="A3" runat="server" style="color: #8c0000; font-family: 'Eras Bold ITC'; text-decoration:none;">update admission fee</a>
</td>
</tr>
<tr>
<td>
<a href="updatebusfee.aspx" id="A4" runat="server" style="color: #8c0000; font-family: 'Eras Bold ITC'; text-decoration:none;">update bus fee</a>
</td>
</tr>
<tr>
<td>
<a href="logout.aspx" id="A5" runat="server" style="color: #8c0000; font-family: 'Eras Bold ITC'; text-decoration:none;">LogOut</a>
</td>
</tr>
</table>