加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

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

发布时间:2020-12-16 00:03:03 所属栏目:asp.Net 来源:网络整理
导读:我遇到表单身份验证问题.当我尝试加载我的Login.aspx页面时,javascript和样式表都不会加载. 这是我的web.config文件的一部分 authentication mode="Forms" forms loginUrl="Login.aspx" timeout="30" name=".ASPXAUTH" path="/" requireSSL="false" slidingE
我遇到表单身份验证问题.当我尝试加载我的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>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读