如何在 web.config 中的授权标记中创建例外

发布于 2024-09-05 07:52:35 字数 287 浏览 5 评论 0原文

我如何在位置创建例外以允许使用其他角色访问页面 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 技术交流群。

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

发布评论

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

评论(1

听风吹 2024-09-12 07:52:35

按照上面的方式指定另一个位置部分,并指定一直到文件的路径。

为每个位置定义所需的不同授权规则。

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.

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