具体问题就是未登录认证,登录界面引用的css样式和js文件均报302错误;
找了很久的问题终于定位在配置文件上;
具体的解决方法就是在configuration节点下,system.web节点后面添加location节点,Content是我的项目资源路径,大家根据实际更改为自己的资源路径即可。
<configuration>
<system.web>
.
.
</system.web>
<location path="Content">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
</configuration>