Hi.
I have authenticated users to log on my system using this code:
FormsAuthentication.SetAuthCookie(user, false);
I want to hide my system menu for non authenticated users. Something like this:
<% if(???) {%>
<ul id="menu>
...
</ul>
<% } %>
How can I do this?
Thank you.