访问web.config中的授权信息

发布于 2024-07-30 13:04:45 字数 134 浏览 5 评论 0原文

我正在编写一个自定义角色提供程序,我需要以编程方式访问存储在 web.config 中的授权信息。 网站的某些部分只能由某些角色访问。 我想找出哪些角色可以访问页面和/或某个角色可以访问哪个页面。

我似乎无法弄清楚这一点。

I'm writing a custom role provider and I need programmatic access the authorization information stored in the web.config.
Certain section of the site are only accessible by certain roles. I would like to find out which roles can access a page and/or which page a certain role can access.

I can't seem to figure this one out.

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

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

发布评论

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

评论(1

皇甫轩 2024-08-06 13:04:46

您可以通过 System.Web.Security 命名空间中的 WebConfigurationManager 类访问存储在 web.config 中的任何信息,例如 ConnectionStrings、AppSettings 和其他定义的值。

假设您已将授权部分定义为:

<system.web>
<authorization>
  <allow roles="admin,moderator" />
  <deny users="?" />
</authorization></system.web>

您刚刚创建的部分意味着具有管理员和/或主持人角色的用户可以访问其中的页面并拒绝所有人< /strong>(匿名)尝试在没有登录信息的情况下访问。

为此,只需调用 WebConfigurationManager 的 GetSection 方法,因为

AuthorizationSection auth = WebConfigurationManager.GetSection("system.web/authorization") as AuthorizationSection;

AuthorizationSection 类将为您提供
Rules 集合正是您正在寻找的。

You can access any information stored such as ConnectionStrings,AppSettings and other defined values in web.config by WebConfigurationManager class in System.Web.Security namespace.

Let's say you have defined and authorization section as:

<system.web>
<authorization>
  <allow roles="admin,moderator" />
  <deny users="?" />
</authorization></system.web>

The section you just created means users who has admin and/or moderator roles can access pages within and deny everyone (anonymous) who attempts to access without login information.

In order to that just call out WebConfigurationManager's GetSection method as

AuthorizationSection auth = WebConfigurationManager.GetSection("system.web/authorization") as AuthorizationSection;

AuthorizationSection class will give you
Rules collection which is precisely what you're looking for.

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