在普通aspx.cs代码里可以用:
Cache cache = new Cache();
但在XXXX.CS里,就不能用上面的方式了,得用:
永不时间过期
HttpContext.Current.Cache.Insert("Name", "王翔", null, DateTime.MaxValue, TimeSpan.Zero, CacheItemPRiority.NotRemovable, null);
Name:Key
王翔:Value
null:表示没有缓存依赖项
DateTime.MaxValue:时间的最大值(9999-99-99 12:59:59),表示不使用绝对时间过期策略
TimeSpan.Zero:表示不使用平滑过期
CacheItemPrority.NotRemovable:表示优先权为不删除该Cache
null:不怎么用,就null吧
asp.net
绝对...