注销时显示图像的问题
我有两个图像,一个出现在顶部的标题图像,以及一个位于图像内的徽标。标题图像通过 style="background-image(url('x'));"
应用到 DIV 上,徽标通过
在我的配置文件中,我通过以下方式在内容文件夹中启用对匿名用户的权限:
<location path="Content">
<system.web>
<authorization>
<allow users="?"/>
<allow users="*"/>
</authorization>
</system.web>
</location>
但由于某种原因,当用户注销时,会出现标题图像,但不会出现徽标图像。登录时会出现徽标。
这是为什么?
谢谢。
I have two images, a header image that appears at the top, and a logo that I position within the image. The header image is applied on a DIV with a style="background-image(url('x'));"
, and the logo via <asp:Image />
. The images are in a Content folder.
In my config file, I enable permissions to anonymous users in the Content folder via:
<location path="Content">
<system.web>
<authorization>
<allow users="?"/>
<allow users="*"/>
</authorization>
</system.web>
</location>
But for some reason, the header image appears but the logo image doesn't appear when the user logs out. The logo appears when logged in.
Why is that?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么要对内容文件夹设置授权?你可能不需要它。
Why are you setting authorization on the Content folder at all? You probably don't need it.