不同页面有不同的授权?
我的问题相当天真,对此我深表歉意。我的受限访问文件夹的 Web 配置文件如下
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<authorization>
<allow roles="Member" />
<allow roles="Admin" />
<deny users="?" />
</authorization>
</system.web>
</configuration>
现在这适用于该文件夹中的所有页面,有没有办法可以修改它,以便任何具有成员角色的用户只能访问members.aspx,而管理员则可以访问一大堆页面。
我想我可以通过创建不同的文件夹并在其中存储不同的页面并根据需要分配 webconfig 来做到这一点,但我想知道是否可以在单个文件夹中进行页面级授权(基于角色)
谢谢!
My question is rather naive and I apologize for that .My web config file for a restricted access folder is as follows
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<authorization>
<allow roles="Member" />
<allow roles="Admin" />
<deny users="?" />
</authorization>
</system.web>
</configuration>
Now this applies to all the pages in the folder,is there a way I can modify it such that any user with the role Member will have access to say only members.aspx while Admin will have access to a whole bunch of pages .
I guess I could do it by creating different folders and storing different pages in the them and assigning the webconfig as needed but I was wondering if it was possible to have page level authorization (based on roles) in a single folder
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 location 元素指定对网站中不同特定 URL 的访问权限。请注意,您可以从父 web.config 配置所有位置;为此不需要多个 web.config 文件。
You can specify access to different specific URLs in your site by using location elements. Note that you can configure all locations from your parent web.config; having multiple web.config files for this is not necessary.