注销时显示图像的问题

发布于 2024-11-02 19:20:01 字数 557 浏览 3 评论 0原文

我有两个图像,一个出现在顶部的标题图像,以及一个位于图像内的徽标。标题图像通过 style="background-image(url('x'));" 应用到 DIV 上,徽标通过 < /代码>。图像位于 Content 文件夹中。

在我的配置文件中,我通过以下方式在内容文件夹中启用对匿名用户的权限:

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

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

发布评论

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

评论(1

一身仙ぐ女味 2024-11-09 19:20:01

为什么要对内容文件夹设置授权?你可能不需要它。

Why are you setting authorization on the Content folder at all? You probably don't need it.

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