I have a menu in my master page that I need to hide one of the menu items(Admin) in the other pages depends on the role.
This is my menu in masterpage:
<asp:Menu ID="NavigationMenu" runat="server"
StaticSubMenuIndent="10px" StaticMenuItemStyle-HorizontalPadding="15"
Orientation="Horizontal" >
<LevelMenuItemStyles>
<asp:MenuItemStyle CssClass="main_menu" />
</LevelMenuItemStyles>
<Items>
<asp:MenuItem NavigateUrl="~/Admin.aspx" Text="Admin" Value="Admin" />
<asp:MenuItem NavigateUrl="~/Status ...
Go to the complete details ...