System.Web.Caching.Cache c = System.Web.HttpRuntime.Cache;
if (c != null)
...{
c.Insert("1", "123141432432");
object o = c.Get("1");
Console.WriteLine(o);
}
System.Web.Caching.Cache c = System.Web.HttpRuntime.Cache;
if (c != null)
...{
c.Insert("1", "123141432432");
object o = c.Get("1");
Console.WriteLine(o);
}
相关文章: