-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMasterPage2.master
More file actions
45 lines (43 loc) · 3.5 KB
/
MasterPage2.master
File metadata and controls
45 lines (43 loc) · 3.5 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
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<!DOCTYPE html>
<html>
<head runat="server">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<title></title>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">
<div>
<table Width="100%">
<tr>
<td>
<asp:Panel ID="panel1" runat="server" Width="100%" Height="100px" BackColor="#009900">
<br />
<br />
<asp:Label ID="Label1" runat="server" Text="Student Course Manager" ForeColor="White" Font-Bold="True"></asp:Label>
<asp:LinkButton ID="LinkButton1" runat="server" Font-Names="Helvetica" Font-Bold="True" style="text-decoration:none;color:white;" PostBackUrl="~/StudentEnquiry.aspx">Student Enquiry</asp:LinkButton>
<asp:LinkButton ID="LinkButton2" runat="server" Font-Names="Helvetica" Font-Bold="True" style="text-decoration:none;color:white;" PostBackUrl="~/CourseAllotment.aspx">Course Allotment</asp:LinkButton>
<asp:LinkButton ID="LinkButton3" runat="server" Font-Names="Helvetica" Font-Bold="True" style="text-decoration:none;color:white;" PostBackUrl="~/Paymentdetails.aspx">Payment Details</asp:LinkButton>
<asp:LinkButton ID="LinkButton4" runat="server" Font-Bold="True" Font-Names="Helvetica" PostBackUrl="~/FacultyDetails.aspx" style="text-decoration:none;color:white;">Faculty Details</asp:LinkButton>
</asp:Panel>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</html>