ASP.NET MVC 3 中的 ACL
我正在 asp.net mvc 中寻找 acl 的解决方案,就像 cakephp 由她的 ACL 组件提供的那样。
我想创建 acl,以便我可以根据角色和用户分配权限。
谢谢
I am looking for a solution in asp.net mvc for acl like the cakephp is giving by her ACL component.
I want to create the acl so I can assign permission on role and user basis.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
本教程:MVC3:使用 AuthorizeAttribute 登录系统演示了如何将 AuthorizeAttribute 与 Roles 和 Users 一起使用,相当于 ACL。
This tutorial: MVC3: Login System with the AuthorizeAttribute demonstrates how to use the AuthorizeAttribute with the Roles and Users, which is equivalent to ACL.
CakePHP的ACL相当强大。我还没有看到任何可用于 MVC.NET 执行类似操作的工具。对于那些认为 MVC.NET 的 AuthorizeAttribute 等效的人,请阅读 cakephp 文档 并受到启发。 :)
CakePHP's ACL is quite powerful. I haven't seen anything ready-to-use for MVC.NET that does something similar. For those of you who think that MVC.NET's AuthorizeAttribute is equivalent, please read the cakephp doc's and be enlightened. :)