限制用户使用 ASP.NET MVC 中的管理部分

发布于 2024-11-24 20:52:46 字数 182 浏览 1 评论 0原文

我正在 asp.net mvc 2 中使用成员身份,我想限制用户使用管理部分,目前所有用户都可以使用他们的凭据访问管理部分,我对所有 http get 和 post 请求使用了 [Authorise]那,但是如何限制除了管理员和管理员之外的所有人?一些具有某些权限的用户,我在 db asp_net 角色中有表,其中有 2 个角色名称:管理员和用户。

I am using membership in asp.net mvc 2 and i want to restrict users from using the admin section , Currently all the users can access the admin section by using their credentials, I used [Authorise] for all the http get and post request for that , but how can restrict everyone apart from admin & some users with certain privileges , I have got table in db asp_net Roles which have 2 role names : Admin and user.

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

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

发布评论

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

评论(1

や三分注定 2024-12-01 20:52:46

你可以这样做...

[Authorize(Roles = "Admin")]

You can do this ...

[Authorize(Roles = "Admin")]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文