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

【记录】ASP.NET MVC 4/5 Authentication 身份验证无效

时间:2014-11-09 13:56:29      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   os   sp   for   on   问题   

原文:【记录】ASP.NET MVC 4/5 Authentication 身份验证无效

在 ASP.NET MVC 4/5 应用程序发布的时候,遇到一个问题,在本应用程序中进行身份验证是可以,但不能和其他“二级域名”共享,在其他应用程序身份验证,不能和本应用程序共享,示例代码:

System.Web.Security.FormsAuthentication.SetAuthCookie("蟋蟀", true);

webconfig 配置如下:

<system.web>
    <pages validateRequest="false"></pages>
    <authentication mode="Forms">
        <forms name=".DottextCookie" domain=".test.com" loginUrl="~/Account/Login" protection="All" />
    </authentication>
    <compilation debug="true" targetFramework="4.5.1" />
    <httpRuntime targetFramework="4.5.1" requestValidationMode="2.0" />
  </system.web>

比较“奇葩”的解决方式是:把 httpRuntime 节点中的“targetFramework="4.5.1"”去掉就好了,HttpRuntime.TargetFramework 属性参考:system.web.httpruntime.targetframework,感觉应该是应用程序的 Framework 版本和服务器 Framework 版本不一致所引起的,至于具体原因,尚不得知!

【记录】ASP.NET MVC 4/5 Authentication 身份验证无效

标签:blog   http   io   ar   os   sp   for   on   问题   

原文地址:http://www.cnblogs.com/lonelyxmas/p/4084976.html

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