使用了<%response.ExpiresAbsolute = Now() - 1%>
或加入
<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
<META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1996 08:21:57 GMT">
<META HTTP-EQUIV="expires" CONTENT="0">
等代码都无法实现。
始终都可以在脱机下看见,请指教。
Response.Expires= 0
Response.Expiresabsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.AddHeader "Last-Modified",Now()
Response.CacheControl = "no-cache"