2011年4月15日

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 韩显川 阅读(741) 评论(0) 推荐(0) 编辑

导航