0
我已經設置身份驗證cookie下同:永久性Cookie超時自定義時間,它不是persistence
FormsAuthentication.SetAuthCookie(member.UserName,member.RememberMe);
,並在web.config中:
時記住的是真的還是假的<authentication mode="Forms"> <forms loginUrl="~/Login" timeout="2" slidingExpiration="true"/> </authentication>
,結果是沒有什麼不同,以及用戶後2分鐘註銷。我的問題在哪裏? 感謝
你在超時的web配置=「2」 – Akhlesh
@akhlesh沒有,它不使用的sessionState有它。我在global.asax中有這樣的代碼:「void MvcApplication_PostAuthenticateRequest(object sender,EventArgs e) { System.Web.HttpContext.Current.SetSessionStateBehavior( SessionStateBehavior.Required); }」 – mortazavi