访问web.config中的授权信息
我正在编写一个自定义角色提供程序,我需要以编程方式访问存储在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 System.Web.Security 命名空间中的 WebConfigurationManager 类访问存储在 web.config 中的任何信息,例如 ConnectionStrings、AppSettings 和其他定义的值。
假设您已将授权部分定义为:
您刚刚创建的部分意味着具有管理员和/或主持人角色的用户可以访问其中的页面并拒绝所有人< /strong>(匿名)尝试在没有登录信息的情况下访问。
为此,只需调用 WebConfigurationManager 的 GetSection 方法,因为
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:
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 class will give you
Rules
collection which is precisely what you're looking for.