I have a site.master page in an asp application which contains a div menu and it looks like this.
<div id="menu">
<ul>
<li class="first"><a href="sample.aspx">home</a></li>
<li><a href="managerserviceshome.aspx">manager services</a></li>
<li><a href ="employeeservicehome.aspx">employee services</a></li>
<li><a href="myprojectshomepage.aspx">my projects</a></li>
</ul>
</div>
What i want is that the manager services portion should be visible only if a particular employee has his 'Is_Manager' field set to True in the database. For the rest this tag should be invisible. How do I achieve this?? How do i check for this contidion over here in this site.master page? please help.