HttpContext.Current.Session["list"] == null in Firefox but not in IE
Any ideas/suggestions to why I get (HttpContext.Current.Session["list"] == null) in Firefox but not in IE? The check is called in .cs 开发者_StackOverflow社区
Cheers, Tim
That may happen if you are using a cookie for the session identifier and you have cookies disabled in your browser.
Try enabling cookies
精彩评论