vote up 0 vote down star

how can i check if a user is logged in in user control with asp.net mvc

usually on a view page i use this

<% if (User.Identity.IsAuthenticated) {%>
                //Do something
           <% } %>

but i can't get this done on a user control

flag

3 Answers

vote up 3 vote down check

Does this work?

<%= Page.User.Identity.IsAuthenticated %>
link|flag
vote up 3 vote down

Nothing new here, but I would normally do:

<% Request.IsAuthenticated %>

link|flag
vote up 0 vote down

You could decorate the Method with the Authorize attribute. This requires that the User calling the Method being authenticated.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.