Authentication and permission of Users with MVC

2

I'm developing an application in MVC 3, using C # for Models and Controllers and Razor with HTML for Views. I want to implement authentication and permission from users to the system. How can I do this using the features that MVC provides for user control? (If it exists). Can you do it?

    
asked by anonymous 12.02.2014 / 02:11

1 answer

2

Answer:

Yes, it is possible.

Explanation:

If you're starting with the I suggest you search for the FormsAuthentication , for authentication and the AuthorizeAttribute class to perform access control.

Reference:

  

This link below is from an article that I interpreted from your question as a glove for what you need.

     

link

    
12.02.2014 / 11:39