摘要: 使用Asp.net开发,使用Forms验证,在退出按钮里写 FormsAuthentication.SignOut() 并清除Session和Cookie,发现退出后,使用Request.IsAuthenticated获取到的值依然是True。解决办法:FormsAuthentication.SignOut() 必须写在逻辑最后,在执行FormsAuthentication.SignOut()方法后,不能再进行清除Cookie的操作。或者写入session清除更明了有效。public ActionResultLogout(){FormsAuthentication.SignOut();Sess 阅读全文
posted @ 2012-10-13 15:01 Raywang80s 阅读(882) 评论(0) 推荐(0) 编辑