我使用 AuthorizeAttribute,我如何知道某个操作已授权给当前用户?

发布于 2024-10-03 09:24:40 字数 40 浏览 3 评论 0原文

我想自动生成菜单,我如何知道某个操作已授权给当前用户(在视图中)?

I want to generate menu automatically, How can I know an action is authorized to current user(in view)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如梦 2024-10-10 09:24:40

如果您只需要基本功能,您应该考虑使用角色。

http://www.asp.net/security/tutorials

http://rtur.net/blog/post /2009/06/03/Quick-and-dirty-role-management-in-ASPNET-MVC.aspx

对于更强大但非常耗时的开始,请查看 Rhino Security:

http://ayende.com/Blog/archive/ 2008/01/22/Rhino-Security-Overview-Part-I.aspx

您可以从视图或控制器检查用户是否处于特定角色。

<% if (HttpContext.Current.User.IsInRole("Administrator") ) 
   { 
      Html.RenderPartial("AdminMenus"); 
   } 
   else 
   { 
      Html.RenderPartial("UserMenus"); 
   } 
%>

You should look at using roles if you only need basic functionality.

http://www.asp.net/security/tutorials

http://rtur.net/blog/post/2009/06/03/Quick-and-dirty-role-management-in-ASPNET-MVC.aspx

For something more robust, but very time consuming to get started with, look at Rhino Security:

http://ayende.com/Blog/archive/2008/01/22/Rhino-Security-Overview-Part-I.aspx

You can check if the user is in a particular role from the view or the controller.

<% if (HttpContext.Current.User.IsInRole("Administrator") ) 
   { 
      Html.RenderPartial("AdminMenus"); 
   } 
   else 
   { 
      Html.RenderPartial("UserMenus"); 
   } 
%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文