ACLs in ASP.NET MVC 3

I am looking for a solution in asp.net mvc for acl, for example cakephp gives its ACL component.

I want to create acl, so I can assign permission for the role and user.

thanks

+6
source share
2 answers

CakePHP ACL is quite powerful. I have not seen anything ready to use for MVC.NET that does something like this. For those of you who think MVC.NET AuthorizeAttribute is equivalent, read the cakephp doc and enlighten. :)

+1
source

This tutorial: MVC3: An authorized attribute login system demonstrates how to use AuthorizeAttribute with Roles and Users, which is equivalent to an ACL.

-1
source

Source: https://habr.com/ru/post/887908/


All Articles