Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 31 down vote accepted

Does this work?

<%= Page.User.Identity.IsAuthenticated %>
share|improve this answer

Nothing new to add to Griegs answer, but I would normally do

<%: Request.IsAuthenticated %>
share|improve this answer

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

share|improve this answer

well i use (VB)

If User.Identity.Name="" then
   Response.Redirect("~/Login.aspx")
else
   ........continue...........
End If
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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