哆啦a梦新番373:如何清除ASP缓存?

来源:百度文库 编辑:高校问答 时间:2024/07/18 23:52:10
如何清除ASP缓存?

在Asp页面首部加入
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "No-Cache"