最新的Web开发教程
 

ASP CacheControl Property


<完全反应对象参考

CacheControl属性设置代理服务器是否可以缓存由ASP或不产生输出。 默认情况下,代理服务器将不能保持高速缓存副本。

句法

response.CacheControl[=control_header]

参数 描述
control_header 高速缓存控制头,可设置为"Public""Private"

私人是默认的,表明仅私有的高速缓存可以缓存此页。 代理服务器将不缓存的网页使用此设置。

公开表明公共缓存。 代理服务器将缓存与此设置页面。

例子

<%response.CacheControl="Public"%>

or

<%response.CacheControl="Private"%>

<完全反应对象参考