Original: "Logging" ASP. 4/5 Authentication Authentication Invalid
When an ASP. NET MVC 4/5 application is published, it encounters a problem that authentication in this application is possible, but cannot be shared with other "two level domain names", authentication in other applications, cannot be shared with this application, sample code:
System.Web.Security.FormsAuthentication.SetAuthCookie("蟋蟀", true);
The Webconfig configuration is as follows:
<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" />
Comparison of "Wonderful" solution is: the HttpRuntime node in the "targetframework=" 4.5.1 "" to remove the good, httpruntime.targetframework Attribute reference: System.web.httpruntime.targetframework, the feeling should be the framework version of the application and the server framework version of the inconsistency caused by, as for the specific reasons, not yet know!
"Logging" ASP 4/5 Authentication Authentication Invalid