Your browser does not support JavaScript! Please enable script of your browser.
Ɖot Net Tricks
" Coding , A Rhythmic Literary Job "
Handy Tricks For Beginners & Professionals
Asp.Net MVC 4, 3 - Tutorial, Article, Archive, Pdf, Handy Tricks, Code Snippets, Training, Reference Manual, Model, View, Controller, Routing System, Unobtrusive Validation, Html Helpers, Razor Engine, Data Annotations, Dependancy Injection, Database Access, Security, Configuration and Deployment

Securing Asp.Net MVC Application by using Authorize Attribute

Posted By : Shailendra Chauhan, 06 Jan 2013
Version Support : MVC3 & MVC4

Authorization is the process of determining the rights of an authenticated user for accessing the application's resources. The Asp.Net MVC Framework has a AuthorizeAttribute filter for filtering the authorized user to access a resource.

Authorize Attribute Properties
Properties
Description
Roles
Gets or sets the roles required to access the controller or action method.
Users
Gets or sets the user names required to access the controller or action method.

Filtering Users by Users Property

Suppose you want to allow the access of AdminProfile to only shailendra and mohan users then you can specify the authorize users list to Users property as shown below.

[Authorize(Users = "shailendra,mohan")]
public ActionResult AdminProfile()
{
 return View();
}

Filtering Users by Roles Property

Suppose you want to allow the access of AdminProfile action to only Admin and SubAdmin roles then you can specify the authorize roles list to Users property as shown below.

[Authorize(Roles = "Admin,SubAdmin")]
public ActionResult AdminProfile()
{
 return View();
}
What do you think?

I hope you will enjoy the tips while programming with Asp.Net MVC. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.

 
 
Recommended Articles !!
 
Tips & Tricks Subscription
 
.Net Interview Book (Coming Soon..)
 
Join Training Programs in Noida
 
Search Articles
 
Browse By Category
 
Recent Articles
 
Most Popular Articles