Below is my code in master page which has three tabs: 1. Home 2. Employee Leave Detail Report 3. ProjectWise Reports.
Now I need to restrict the "ProjectWise.aspx" access to employees, I am not logged in directly on running the application, so currently I will see Home.aspx, Employee Leave Detail Report.aspx and ProjectWise.aspx.
I need to restrict the access ProjectWise.aspx to employees. How can I do this?
<div class="wrapper">
<div class="menu">
<ul>
<li class="navigation_first_item"><a href="Home.aspx">Home</a></li>
<li><a href="Employee Leave Detail Report.aspx">Employee Leave Detail Report</a></li>
<li><a href="ProjectWise.aspx">ProjectWise</a></li>
</ul>
</div>
<div class="clear"></div>
<div class="content">
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
<div class="clear"></div>
<br />
<div class="footer">
<p class="l">Copyright © 2014 - <a href="#"></a> · All Rights Reserved | Privacy Policy</p>
</div>
</div>