Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
this is my menu:



XML
<% if (Request.IsAuthenticated)
{ %>
<%: Html.ActionLink("tag1", "tag1", "Home")%>
<% } %>
<%: Html.ActionLink("tag2", "tag2", "Home")%>
<% } %>

else
{
<%: Html.ActionLink("Home", "Index", "Home") %>
<%: Html.ActionLink("Assurancequalité", "AQ", "Home") %>
<%: Html.ActionLink("Control qualité","CQ", "Home">
}


i want get a test with the users authentifications:
for example if the first user is authentificate the 'tag1' appear
if the second user is authentificate the 'tag2' appear
else
the otherv tags appear
Posted
Comments
willempipi 10-Jan-13 6:17am    
what do you mean with "the first user" and "the second user"? There's only 1 user logged in.
loylmed 10-Jan-13 6:42am    
i have two user.every one must be redirect to her property space after authentification and i want that her property tags appear

1 solution

Why are you asking this over and over again ?

HttpContext.Current.User

gets you the current user. User has an IsInRole method, or similar.

Please don't ask this again, don't flood the site. Just ask, and keep editing your question if need be. Or better yet, ask clearly the first time.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900