清理客户端缓存
摘要:
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.Respo 阅读全文
posted @ 2012-12-09 16:19 和轩僮 阅读(288) 评论(0) 推荐(0) 编辑