asp.net 表单身份验证 - 使文件夹公开可用

发布于 2024-09-12 13:37:46 字数 244 浏览 3 评论 0原文

我在 MVC 2 项目中使用表单身份验证。

我的 web.config 中有这样的内容:

 <authorization>
     <deny users="?" />
 </authorization>

我希望 /Content 文件夹可供尚未经过身份验证的用户使用。登录视图使用该文件夹中的 css,该文件夹在登录时应该可用。

谢谢

I am using forms authentication in a MVC 2 project.

I have this in my web.config:

 <authorization>
     <deny users="?" />
 </authorization>

I want the /Content folder to be available to users that haven't been authenticated yet. The login view uses the css in that folder, which should be available at login time.

Thanks

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

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

发布评论

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

评论(2

眼趣 2024-09-19 13:37:46

您可以使用 css 文件作为配置文件中的位置,如下所示:

<location path="whatever.css">
    <system.web>
        <authorization>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>

这将是您的主 system.web 块的外部我相信

如果此内容文件夹是一个单独的文件夹,它可以拥有自己的 web.config 文件,您可以设置该文件允许=*

you can use the css file as a location in your config file like this:

<location path="whatever.css">
    <system.web>
        <authorization>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>

This would be external of your main system.web block i believe

if this content folder is a separate folder it can have its own web.config file that you can set to allow=*

薆情海 2024-09-19 13:37:46

你的意思是:

 <authorization>
     <allow users="*" />
 </authorization>

do you mean:

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