清除 System.Web.Caching.Cache 以"xxx"开头的缓存
public static void ClearStartCache(string keyStart) { List<string> cacheKeys = new List<string>(); System.Web.Caching.Cache _cache = HttpRuntime.Cac...