·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> 网站建设开发 >> ASP.NET网站开发 >> FormsAuthentication登录兼容IE11保存cookie
现象:使用FormsAuthentication进行登录验证,在IE11客户端无法保存cookie
解决方法:在web.config中的forms中增加cookieless="UseCookies"属性。
<authentication mode="Forms"> <forms cookieless="UseCookies" loginUrl="~/Login" domain="wlm.so"/> </authentication>