未经身份验证的用户不得通过输入 URl 来访问页面
在我的 Web 应用程序中,经过身份验证的用户可以访问此 URL localhost/mydata.aspx,但未经身份验证的用户键入此 URL 也可以访问此页面。 那么如何防止未经授权的用户访问此页面以及他们是否将其重定向到login.aspx
in my web-application, an authenticated user can access this URL localhost/mydata.aspx, but an un-authenticated user type this URL he can also access this page.
so how to prevent unauthorized user from access this page and if they does redirecting them to login.aspx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 web.config 文件的
configuration
部分下添加以下内容:如果您想限制对特定文件夹的访问:
这将允许访问未经身份验证的用户:
Add the following in your web.config file under the
configuration
section:And if you want to restrict access to a particular folder:
This will allow access to unauthenticate a user: