-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstudentHomePage.aspx
More file actions
23 lines (16 loc) · 817 Bytes
/
studentHomePage.aspx
File metadata and controls
23 lines (16 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<%@ Page Language="C#" MasterPageFile="~/studentMaster.master" AutoEventWireup="true" CodeFile="studentHomePage.aspx.cs" Inherits="home_page_of_student" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table width="400">
<tr>
<td align="left" colspan="2" style="height: 21px">
<asp:LinkButton ID="LinkButton1" runat="server" PostBackUrl="~/PersonalDetails.aspx" >Personal
Details</asp:LinkButton>
<br />
<asp:LinkButton ID="LinkButton2" runat="server" PostBackUrl="~/StudentFeeDetails.aspx">Fee
Details</asp:LinkButton>
<br />
<asp:LinkButton ID="lng" runat="server" PostBackUrl="~/logout.aspx" Text="LogOut"></asp:LinkButton>
</td>
</tr>
</table>
</asp:Content>