public static void ClearImageCache(string imagesPath) { ImageCache.ClearCache(imagesPath); if (HttpContext.Current.Cache[imagesPath] != null) { HttpContext.Current.Cache.Remove(imagesPath); } }