asp.net 成员资格 - 如何以编程方式确定用户是否处于角色

发布于 2024-07-29 05:31:29 字数 107 浏览 3 评论 0原文

确定用户是否处于某个角色的代码是什么?

我已经通过 ASP.NET 配置安全选项卡设置了所有用户,但现在想要围绕一些关键区域放置逻辑,以便只有特定角色的人员可以查看和访问这些区域。

What is the code for determining if a user is in a role?

I have set up all the users through the ASP.NET Configuration Security tab but now want to put logic around some key areas so only people in certain roles can see and access these areas.

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

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

发布评论

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

评论(4

故事和酒 2024-08-05 05:31:29
if (User.IsInRole("rolename")) {
  // my action
}
if (User.IsInRole("rolename")) {
  // my action
}
↘人皮目录ツ 2024-08-05 05:31:29

简单~

HttpContext.Current.User.IsInRole("roleName")

Easy~

HttpContext.Current.User.IsInRole("roleName")
何其悲哀 2024-08-05 05:31:29

查看 Roles 类,特别是 IsUserInRole 、GetUsersInRole、AddUserToRole 等。

我一直使用这些。

Check out the Roles class, specifically IsUserInRole, GetUsersInRole, AddUserToRole, etc.

I use these all the time.

辞慾 2024-08-05 05:31:29

感谢“克里斯·范·奥普斯塔”。 我这样解决了我的问题,

    public ActionResult Index()
    {

        if (User.IsInRole("Supervisor"))
        {
            return RedirectToAction("Index", "InvitationS");
        }
        return View();
    }

thanks to "Chris Van Opstal". i solved my problem like this way,

    public ActionResult Index()
    {

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