c# – HttpContext.Current.Session vs Context.Session

前端之家收集整理的这篇文章主要介绍了c# – HttpContext.Current.Session vs Context.Session前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
他们是同一件事吗?还是不同?

我会读这个SO postthis,但他们正在比较HttpContext.Current.Session和Session not Context.Session.我缺少什么/误会?

解决方法

Context.Session在一个页面中与HttpContext.Current.Session相同. HttpContext.Current.Session通常从不直接在页面上的代码或者没有引用当前页面代码使用.
原文链接:https://www.f2er.com/csharp/94376.html

猜你在找的C#相关文章