当其余页面需要授权时,允许公共访问两个 ASP.NET WebForm 页面
我们正在向应用程序添加几个不需要在登录后锁定的页面。我如何打开两个页面以供公众访问。
这是我的 Web.config:
<authentication mode="Forms">
<forms name=".ORGANIZATION" loginUrl="Default.aspx" protection="All" timeout="120"/>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
我们希望 page1.aspx 和 page2.aspx 公开。我怎么会允许这样呢?
We are adding a couple pages to our application that don't need to be locked down behind a login. How would I open up two pages to be publicly accessible.
Here is my Web.config:
<authentication mode="Forms">
<forms name=".ORGANIZATION" loginUrl="Default.aspx" protection="All" timeout="120"/>
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
We want page1.aspx and page2.aspx to be public. How would I allow that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 web.config 中添加一个
location
来免除它们:You would add a
location
in the web.config to exempt them:在经过身份验证的网站中,您可以使用
web.config
中的Location
元素来指定可以匿名访问页面。在此
web.config
部分中,任何人都可以在未经身份验证的情况下访问 RecoverPassword 页面,但任何人都无法在未经身份验证的情况下访问 Admin 文件夹中的页面。In an authenticated website, you can use the
Location
element inweb.config
to specify that a page can be accessed anonymously.In this
web.config
section anyone can get to the RecoverPassword page without being authenticated, but no one can access pages in the Admin folder without being authenticated.