0% found this document useful (0 votes)
6 views1 page

Admin Master Page for EMS

The document is an ASP.NET master page for an Employee Management System, featuring a header with an admin greeting and a menu for navigation. It includes placeholders for dynamic content in the main section and a footer with copyright information. The page links to a CSS stylesheet for design and uses XHTML for structure.

Uploaded by

kneelgames
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Admin Master Page for EMS

The document is an ASP.NET master page for an Employee Management System, featuring a header with an admin greeting and a menu for navigation. It includes placeholders for dynamic content in the main section and a footer with copyright information. The page links to a CSS stylesheet for design and uses XHTML for structure.

Uploaded by

kneelgames
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="[Link].

cs"
Inherits="[Link]" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"


"[Link]

<html xmlns="[Link]
<head id="Head1" runat="server">
<title>Employee Management System</title>
<link rel="stylesheet" type="text/css" href="/css/[Link]" />
</head>
<body>
<form id="Form1" runat="server">
<!-- Header -->
<header>
<div><a href="[Link]
Admin</a></div>
<div class="menu">
<button>
<img src="/images/[Link]" alt="Menu" class="menu-icon"
/>
</button>
<div class="menu-content">
<asp:ContentPlaceHolder ID="MainMenu" runat="server">
<!-- This is where the profile link or menu will be
rendered -->
</asp:ContentPlaceHolder>
<!--<a
href="[Link]
<a href="[Link]
Up</a> -->
</div>
</div>
</header>

<!-- Main Content -->


<main>
<asp:ContentPlaceHolder ID="MainContent"
runat="server"></asp:ContentPlaceHolder>
</main>

<!-- Footer -->


<footer>
&copy; 2024 EMS
</footer>
</form>
</body>
</html>

You might also like