-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSite.Master
More file actions
26 lines (22 loc) · 910 Bytes
/
Site.Master
File metadata and controls
26 lines (22 loc) · 910 Bytes
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
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="NIT_Registration_Form.SiteMaster" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title>College Registration</title>
<link href="CSS/style.css" rel="stylesheet" />
</head>
<body>
<form runat="server">
<div class="navbar">
<asp:Menu ID="MainMenu" runat="server" Orientation="Horizontal" OnMenuItemClick="MainMenu_MenuItemClick">
<Items>
<asp:MenuItem Text="Student" Value="Student"></asp:MenuItem>
<asp:MenuItem Text="Faculty" Value="Faculty"></asp:MenuItem>
<asp:MenuItem Text="Non-Faculty" Value="NonFaculty"></asp:MenuItem>
</Items>
</asp:Menu>
</div>
<asp:ContentPlaceHolder ID="MainContent" runat="server"></asp:ContentPlaceHolder>
</form>
</body>
</html>