c# asp.net mvc 如何使用 application 存储全局对象?

2024年11月16日 12:45
有1个网友回答
网友(1):

可以用web cache

public static object GetCache(string CacheKey)
{
System.Web.Caching.Cache objCache = HttpRuntime.Cache;
return objCache[CacheKey];
}

public static void SetCache(string cacheKey, object objObject)
{
if (objObject == null)
return;
System.Web.Caching.Cache objCache = HttpRuntime.Cache;
objCache.Insert(cacheKey, objObject);
}