使用 asp.net 会员提供商保护各个页面的安全
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“*”指所有用户(已登录或以其他方式登录)。如果您只想引用未经身份验证(未登录)的用户,请使用“?”。
'*' refers to all users (logged in or otherwise). If you want to refer only to users who are not authenticated (not logged in), use '?'.