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

Emp Attendance HTML

The document is an ASP.NET web page for an employee attendance report within an Employee Management System. It includes links for user navigation such as profile, leave application, payroll viewing, performance, and task viewing. The page utilizes a ReportViewer control to display the attendance report and is set up with a master page layout.

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)
5 views1 page

Emp Attendance HTML

The document is an ASP.NET web page for an employee attendance report within an Employee Management System. It includes links for user navigation such as profile, leave application, payroll viewing, performance, and task viewing. The page utilizes a ReportViewer control to display the attendance report and is set up with a master page layout.

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
You are on page 1/ 1

<%@ Page Title="" Language="C#" MasterPageFile="~/Site1.

Master"
AutoEventWireup="true" CodeBehind="empAttendance.aspx.cs"
Inherits="EmployeeManagementSystem.Employee.empAttendance" %>

<%@ Register assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0,


Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
namespace="Microsoft.Reporting.WebForms" tagprefix="rsweb" %>

<asp:Content ID="Content1" ContentPlaceHolderID="profilePic" runat="server">


</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainMenu" runat="server">
<a href="http://localhost:41773/Registration/signUp.aspx">Profile</a>
<a href="http://localhost:41773/Registration/signUp.aspx">Apply For Leave</a>
<a href="http://localhost:41773/Registration/signUp.aspx">View PayRolls</a>
<a href="http://localhost:41773/Registration/signUp.aspx">View Performance</a>
<a href="http://localhost:41773/Registration/signUp.aspx">View Task</a>
<a href="http://localhost:41773/Registration/login.aspx">Log Out</a>
<asp:Literal ID="litProfile" runat="server" />
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="server">
<h2>Employee Attendance Report</h2>

<!-- Required ScriptManager -->


<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>

<rsweb:ReportViewer ID="ReportViewer1" runat="server" Width="100%"


Height="600px" ProcessingMode="Local">
</rsweb:ReportViewer>
</asp:Content>

You might also like