ASP.NET Forms Authentication阻止在Login.aspx上加载javascript

前端之家收集整理的这篇文章主要介绍了ASP.NET Forms Authentication阻止在Login.aspx上加载javascript前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我遇到表单身份验证问题.当我尝试加载我的Login.aspx页面时,javascript和样式表都不会加载.
这是我的web.config文件的一部分
<authentication mode="Forms">
        <forms loginUrl="Login.aspx"
               timeout="30"
               name=".ASPXAUTH"
               path="/"
               requireSSL="false"
               slidingExpiration="true"
               defaultUrl="Main.aspx"
               cookieless="UseDeviceProfile" />
    </authentication>

    <authorization>
        <deny users="?" />
    </authorization>

请帮助我,了解发生了什么.

解决方法

您需要在< configuration>下的web.config中为这些目录或文件添加例外.元件.
<configuration>
  <system.web>
     ...
  </system.web>

  <location path="css">
    <system.web>
      <authorization>
        <allow users="*"/>
      </authorization>
    </system.web>
  </location>
</configuration>
原文链接:https://www.f2er.com/aspnet/251336.html

猜你在找的asp.Net相关文章