What is the code for determining if a user is in a role?
I have set up 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.
What is the code for determining if a user is in a role?
I have set up 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.
if (User.IsInRole("rolename")) {
// my action
}
Easy~
HttpContext.Current.User.IsInRole("roleName")
Check out the Roles class, specifically IsUserInRole, GetUsersInRole, AddUserToRole, etc.
I use these all the time.
thanks to "Chris Van Opstal". i solved my problem like this way,
public ActionResult Index()
{
if (User.IsInRole("Supervisor"))
{
return RedirectToAction("Index", "InvitationS");
}
return View();
}
© 2022 - 2024 — McMap. All rights reserved.