user control file has navigation menu items added in our application. I am trying to invisible the Favorite_list.aspx and would like to make this form visible only if the customer logged in.
I am trying "display:none;" that still displays aspx form in navigation menu
<li>
<ul class="subMenu">
<li><a href="/Values/Favorite_List.aspx">Favorite List</a><style="display:none;"></style></li>
When I tried to add style element it gave me the warning
style cannot be nested in li element.
Please help how would I make it invisible.
Go to the complete details ...