【发布时间】:2012-03-09 13:21:05
【问题描述】:
我已经为我的网站设置了 FormAuthentication。
我想允许匿名访问登录页面及其资源(js、css、图像)。
我已添加到 web.config。那里的顺序重要吗?
<configuration>
<configSections>
<section name="hibernate-configuration"
type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate" />
<section name="log4net"
type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<appSettings>
<add key="webpages:Version" value="1.0.0.0" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<location path="~/Authentication.htm">
<system.web>
<authorization>
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="~/Resources">
<system.web>
<authorization>
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="~/js">
<system.web>
<authorization>
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="~/Images">
<system.web>
<authorization>
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="~/Controllers">
<system.web>
<authorization>
<deny users="*" />
</authorization>
</system.web>
</location>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
.....
</assemblies>
</compilation>
<authentication mode="Forms">
<forms name="Login" loginUrl="~/Authentication.htm"
protection="All" path="/" timeout="30" />
</authentication>
<authorization>
<deny users ="?" />
<allow users = "*" />
</authorization>
为什么我添加到的路径仍然出现身份验证错误?
Authentication.htm?ReturnUrl=%2fResources%2fScripts%2fjquery-1.7.1.min.js:1Uncaught SyntaxError: Unexpected token <
Authentication.htm?ReturnUrl=%2fjs%2fCommon.js:1Uncaught SyntaxError: Unexpected token <
Authentication.htm?ReturnUrl=%2fjs%2fAuthentication.js:1Uncaught SyntaxError: Unexpected token <
【问题讨论】:
标签: c# asp.net web-config forms-authentication