清理客户端缓存

context.Response.ContentType = "text/plain"; 
            context.Response.Buffer = true; 
            context.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1); 
            context.Response.AddHeader("pragma", "no-cache"); 
            context.Response.AddHeader("cache-control", ""); 
            context.Response.CacheControl = "no-cache";

以上是C#里面的代码、...

原文地址:https://www.cnblogs.com/vic_lu/p/2810153.html