常见页面的 ASP.NET 页面取消授权
我正在开发一个具有基于表单的身份验证的网络应用程序。除“关于我们”和“联系我们”页面外,所有页面都需要进行身份验证。
除了“关于我们”和“联系我们”页面之外,我配置的所有内容都是正确的。由于我拒绝授权部分中的所有用户,因此即使客户浏览“关于我们”和“联系我们”页面,应用程序也会重定向。
配置规则
<authentication mode= "Forms">
<forms name=".ASPXAUTH" loginUrl="Login.aspx" timeout="20" protection="All" slidingExpiration="true" />
</authentication>
<authorization>
<deny users="?" />
</authorization>
您能否告诉我如何告诉 asp.net 删除这些授权页面?
谢谢, 马赫什
I am developing a web application which has form based authentication. All pages needs to be authenticated except AboutUs and ContactUs pages.
I configured everything correct except AboutUs and ContactUs pages. Since I am denying all users in authorization section, application is redirecting even if the customer browse AboutUs and ContactUs pages.
Configuration Rules
<authentication mode= "Forms">
<forms name=".ASPXAUTH" loginUrl="Login.aspx" timeout="20" protection="All" slidingExpiration="true" />
</authentication>
<authorization>
<deny users="?" />
</authorization>
Could you please let me know how can I tell asp.net to remove these pages for authorization??
Thanks,
Mahesh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: