码迷,mamicode.com
首页 > Web开发 > 详细

HTTP 错误 401.0 - Unauthorized 的解决方案

时间:2016-06-17 17:06:49      阅读:566      评论:0      收藏:0      [点我收藏+]

标签:

1、安装vs2015后,以前做的项目中Forms身份验证,竟然不能使用了

  技术分享

2、打开当前项目属性,将windows身份验证属性改为启用

  技术分享

3、vs2015生成的mvc项目中,webconfig缺失authentication节点,补上

  <system.web>
    <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
    <authentication mode="Forms">
      <forms loginUrl="~/Account/Login" timeout="2880" />
    </authentication>
  </system.web>

  

HTTP 错误 401.0 - Unauthorized 的解决方案

标签:

原文地址:http://www.cnblogs.com/amywechat/p/5594154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!