未经身份验证的用户不得通过输入 URl 来访问页面

发布于 2024-11-04 02:15:15 字数 130 浏览 2 评论 0原文

在我的 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 技术交流群。

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

发布评论

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

评论(1

两相知 2024-11-11 02:15:15

在 web.config 文件的 configuration 部分下添加以下内容:

<system.web>
  <authorization>
    <deny users="?"/>   
      </authorization>
</system.web>

如果您想限制对特定文件夹的访问:

<location path="FolderPath">
    <system.web>
        <authorization>
            <deny users="?"/>
        </authorization>
    </system.web>
</location>

这将允许访问未经身份验证的用户:

<location path="LoginPage.Aspx">
   <system.web>
  <authorization>
    <allow users="*"/>  
      </authorization>
</system.web>
</location>

Add the following in your web.config file under the configuration section:

<system.web>
  <authorization>
    <deny users="?"/>   
      </authorization>
</system.web>

And if you want to restrict access to a particular folder:

<location path="FolderPath">
    <system.web>
        <authorization>
            <deny users="?"/>
        </authorization>
    </system.web>
</location>

This will allow access to unauthenticate a user:

<location path="LoginPage.Aspx">
   <system.web>
  <authorization>
    <allow users="*"/>  
      </authorization>
</system.web>
</location>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文