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

I am currently using the [Authorise] attribute in Controllers to restrict Views to be only visible if the website user is logged in.

But how do you restrict only part of a view? eg. Something like this...?

<% if(SomeoneIsLoggedIn) { %>
  <div id="protectedContent">...</div>
<% } %>

This method is called when a login is successful:

public static void CreateLoginCookie(User u)
{
  FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(u.Id.ToString(), true, 9*60);
  string encryptedTicket = FormsAuthentication.Encrypt(ticket);
  HttpCookie cookie = new HttpCookie(FormsAuthentication.FormsCookieName, encryptedTicket) { Expires = DateTime.Now.AddHours(9) };
  HttpContext.Current.Response.Cookies.Add(cookie);
}

(that 9 hours doesn't seem to work btw, the code might be flawed but it's working - it lets people login)

Thanks in advance.

share|improve this question

2 Answers

up vote 2 down vote accepted

You can check if the user is logged in by using this:

System.Web.HttpContext.Current.User.Identity.IsAuthenticated;

Then if the user is logged in you can add that to the ViewData:

ViewData["UserStatus"] = System.Web.HttpContext.Current.User.Identity.IsAuthenticated;

And then on your view you can do this:

<% if((bool)ViewData["UserStatus"]) { %>
  Content only for logged in users 
<% } %>
share|improve this answer
That's it! Thanks Herter – aximili Feb 3 '11 at 1:25

Add a bool to your ViewModel:

public bool ShowProtectedSection {get; set;}

then populate that in your controller according to your business rules (If you use ASP.net Membership you can use Roles, or if you use your own logic then just use that to find out if the user has access).

Add the check to the View:

<% if(Model.ShowProtectedSection) { %>
  <div id="protectedContent">...</div>
<% } %>
share|improve this answer
Thanks Michael, but what do you put in the ShowProtectedSection get method? That is my main question. I am not sure how this [Authorise] attribute work. I don't have my own logic. I'll add the Login method to the question. – aximili Feb 3 '11 at 0:55

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.