asp.net 表单身份验证 - 使文件夹公开可用
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 css 文件作为配置文件中的位置,如下所示:
这将是您的主 system.web 块的外部我相信
如果此内容文件夹是一个单独的文件夹,它可以拥有自己的 web.config 文件,您可以设置该文件允许=*
you can use the css file as a location in your config file like this:
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=*
你的意思是:
do you mean: