.net 注销时显示图像的问题

.net 注销时显示图像的问题,.net,asp.net,forms-authentication,authorization,.net,Asp.net,Forms Authentication,Authorization,我有两个图像,一个出现在顶部的标题图像和一个我在图像中定位的徽标。标题图像应用于一个DIV,其样式为:background-imageurl'x';,和标志通过。图像位于内容文件夹中 在我的配置文件中,我通过以下方式对内容文件夹中的匿名用户启用权限: <location path="Content"> <system.web> <authorization> <allow users="?"/>

我有两个图像,一个出现在顶部的标题图像和一个我在图像中定位的徽标。标题图像应用于一个DIV,其样式为:background-imageurl'x';,和标志通过。图像位于内容文件夹中

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

<location path="Content">
    <system.web>
        <authorization>
            <allow users="?"/>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>
但由于某些原因,当用户注销时,标题图像会出现,但徽标图像不会出现。登录时会显示徽标

为什么呢


谢谢。

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