CSS 页面重定向时不显示

CSS not showing when page is redirected

Asp.net 站点 css 显示我是否登录,但是一旦我使用 LoginStatus 控件注销 css 并且页面的横幅不显示。如果我尝试在不登录的情况下直接进入页面,它会重定向到登录页面,但没有 css 和横幅。

我在母版页中使用了 css 和横幅的完整地址,但它仍然没有显示。

我正在使用角色。以下是我的 web.config

的一部分
<authorization>
     <deny users="?" />
     <allow roles="user" />
   </authorization>
   <roleManager enabled="true" />
   <authentication mode="Forms" />

尝试将您的 CSS 路径添加为所有用户的允许路径:

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