How do I do authorization with MVC asp.net?
|
3
|
|||
|
|
|
There is an Authorization feature with MVC, using ASP.NET MVC beta and creating the MVC project from Visual Studio, automatically adds a controller that used authorization. One thing that will help with your google search, is that it is a "filter". So try searching on "Authorization Filter MVC" and anything preview 4 or greater will help. |
||||||||||
|
|
|
Use the Authorize attribute
You can also use this on the controller. Can pass in users or roles too. If you want something with a little more control, you could try something like this.
|
||
|
|
|
|
I would recommend to take a look at this article: http://kbochevski.blogspot.com/2009/11/mvc-forms-authentication-and.html It helped me today. |
||
|
|
