使用 asp.net 会员提供商保护各个页面的安全

发布于 2024-10-10 19:54:06 字数 304 浏览 3 评论 0原文

我正在使用 asp.net 会员资格和角色提供程序工具,但无法弄清楚如何要求登录特定页面。我尝试将页面放在单独的目录中并将其添加到我的 web.config 中,但成功登录后它仍然拒绝访问。

<location path="Purchase">
  <system.web>
    <authorization>
     <deny users="*"/>
    </authorization>
  </system.web>
</location>

I'm using the asp.net membership and role provider tools and can't figure out how to require login for specific pages. I tried putting the pages in a seperate directory and adding this to my web.config but it still denies access after succesful login.

<location path="Purchase">
  <system.web>
    <authorization>
     <deny users="*"/>
    </authorization>
  </system.web>
</location>

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

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

发布评论

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

评论(1

羁〃客ぐ 2024-10-17 19:54:06

“*”指所有用户(已登录或以其他方式登录)。如果您只想引用未经身份验证(未登录)的用户,请使用“?”。

'*' refers to all users (logged in or otherwise). If you want to refer only to users who are not authenticated (not logged in), use '?'.

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