-
Notifications
You must be signed in to change notification settings - Fork 5
/
MasterPage.master
56 lines (48 loc) · 1.67 KB
/
MasterPage.master
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
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>easygrass_template</title>
<style type="text/css">
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
</style>
<link href="css/19-1-10-1-14.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div id="main">
<div id="header" align="center">STUDENT MANAGEMENT SYSTEM</div>
<div id="banner">
<div id="menupanel">
<ul>
<li><a href="home.aspx">Home</a></li>
<li><a href="administration.aspx">Administration</a></li>
<li><a href="internal.aspx">Internals</a></li>
<li><a href="feespage.aspx">Accounts</a></li>
<li><a href="result.aspx" >Results</a></li>
<li><a href="datesheet.aspx">Datesheets</a></li>
<li><a href="Default12.aspx">Students</a>
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="~/home.aspx"
ForeColor="Black">Logout</asp:HyperLink>
</li>
</ul>
</div>
</div>
<div id="content">
<div class="col1" align="center"><br />
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</div>
<div id="footer"><br />
© 2008. All Rights Reserved. </div>
</div>
</form>
</body>
</html>