在IE中为MVC丢失会话和cookie

时间:2015-05-29 18:42:35

标签: asp.net-mvc internet-explorer session cookies

我的应用程序在Chrome中正常运行。但是在IE9中,我正在丢失会话和cookie。 token仅在当前会话中创建,但我无法检索此IE(Chrome工作正常)。

if (HttpContext.Current.Request.Cookies["token"] != null)
        {
            var memberIdEncrypted = HttpContext.Current.Request.Cookies["token"].Value;
            var auth = new CustomAuthentication();
            memberId = auth.DecryptToken(memberIdEncrypted);
        }

0 个答案:

没有答案