I have authenticated users to login using this code:
FormsAuthentication.SetAuthCookie(user, false);
I want to hide my system menu for non-authenticated users. Something like that:
<% if(???) {%> <ul id="menu> ... </ul> <% } %>
How can i do this?
Thanks.
authentication asp.net-mvc
Mcardinale
source share