我的应用程序在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);
}