vote up 0 vote down star

what is the code for determining if a user is in a role. I have setup all the users through the ASP.Net configuration Security tab but now want to put logic around some key areas so only people in certain roles can see and access these areas.

flag

3 Answers

vote up 6 vote down check
if (User.IsInRole("rolename")) {
  // my action
}
link|flag
what namespace is user in? – oo Jul 31 at 18:01
User is a property of the Page and HttpContext classes, so you can access it on the page simply as User, or in non-page file as HttpContext.Current.User. More info at MSDN: msdn.microsoft.com/en-us/library/… – Chris Pebble Jul 31 at 18:08
vote up 0 vote down

Check out the Roles class, specifically IsUserInRole, GetUsersInRole, AddUserToRole, etc.

I use these all the time.

link|flag
vote up 1 vote down

Easy~

HttpContext.Current.User.IsInRole("roleName")
link|flag
this code will looks into the sql database (thats my provider) to determine role in asp.net? – oo Jul 31 at 17:59
1  
Yes, it will look into whatever provider you have configured. – Chris Pebble Jul 31 at 18:00
Gotta love the providers :) – BigBlondeViking Jul 31 at 18:47

Your Answer

Get an OpenID
or

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