ASP技巧:禁用页面缓存的五种方法
摘要:1、在Asp页面首部<head>加入以下为引用的内容: Response.Buffer = True Response.ExpiresAbsolute = Now() - 1 Response.Expires = 0 Response.CacheControl = "no-cache" Response.AddHeader "Pragma", "No-Cache" 2、在HtML代码中加入以下为引用的内容: <HEAD> <META HTTP-EQUIV="Pragma" CONTEN
阅读全文
posted @ 2011-04-15 10:16
浙公网安备 33010602011771号