如何在 web.config 中的授权标记中创建例外
我如何在位置创建例外以允许使用其他角色访问页面 GanttViewer.aspx 以及仅使用管理员角色访问其他页面
<location path="Admin">
<system.web>
<authorization>
<allow roles="Admin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
How i create a exception in location to allow access to page GanttViewer.aspx with other rol and others pages only with Admin rol
<location path="Admin">
<system.web>
<authorization>
<allow roles="Admin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按照上面的方式指定另一个位置部分,并指定一直到文件的路径。
为每个位置定义所需的不同授权规则。
Specify another Location section as you have above with the path specified all the way down to the file.
For each location define the different authorization rules required.