ASP.NET <位置路径=和身份验证模式

发布于 2024-10-20 05:04:45 字数 133 浏览 1 评论 0 原文

谁能告诉我当我们设置 是否有效?

Can anyone please tell me whether the <location path= works when we set <authentication mode= "None" /> ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

那请放手 2024-10-27 05:04:45

确实如此。

检查这个帖子:
身份验证 - 一个文件夹(页面)无该项目位于 FormsAuthentifications 下,其中共享一个示例。

半边脸i 2024-10-27 05:04:45
<location path="Recovery">      //Path of the folder or form You want to allow
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>

如果您不想允许未经授权的用户输入“?”

<location path="Recovery">      //Path of the folder or form You want to allow
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>

If u dont want to allow unauthorized user type "?"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文