苏宿工业园常白班招聘:如何清除ASP缓存?

来源:百度文库 编辑:神马品牌网 时间:2024/05/08 06:32:32
如何清除ASP缓存?

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