我已经阅读了一个Web应用程序的源代码,并看到它使用Cache对象(Web.Caching.Cache)来缓存数据。在代码隐藏文件(aspx.cs文件)中,它使用Page.Cache来获取Cache,而在其他类定义文件中,它使用HttpContext.Current.Cache来获取Cache。我想知道为什么它不使用相同的选项来获取Cache。有人可以解释Page.Cache和HttpContext.Current.Cache之间的区别吗?为什么要为上面的每个上下文使用每个。我可以在上面的两个上下文中使用Page.Cache或HttpContext.Current.Cache吗? 提前谢谢。
答案 0 :(得分:4)
没有区别,前者使用当前页面实例及其Cache
property,后者使用static
方法通过HttpContext.Current.Cache
,这也可以在静态中使用没有页面实例的方法。
两者都指的是相同的应用程序缓存。
因此,您可以通过Cache
获取Page
,例如Page_Load
:
protected void Page_load(Object sender, EventArgs e)
{
System.Web.Caching.Cache cache = this.Cache;
}
或通过HttpContext
以静态方法(在HttpContext.Current
中使用):
static void Foo()
{
var context = HttpContext.Current;
if (context != null)
{
System.Web.Caching.Cache cache = context.Cache;
}
}