62,268
社区成员
发帖
与我相关
我的任务
分享
/// <summary>
/// 清除客户端缓存
/// </summary>
public static void ClearClientCache()
{
System.Web.HttpContext.Current.Response.Buffer = true;
System.Web.HttpContext.Current.Response.Expires = 0;
System.Web.HttpContext.Current.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);
System.Web.HttpContext.Current.Response.AddHeader("pragma", "no-cache");
System.Web.HttpContext.Current.Response.AddHeader("cache-control", "private");
System.Web.HttpContext.Current.Response.CacheControl = "no-cache";
}