ASP CacheControl Property
Complete Response Object Reference
The CacheControl property sets whether a proxy server can cache the output
generated by ASP or not. By default, a proxy server will not keep a cache copy.
Syntax
response.CacheControl[=control_header]
|
Parameter |
Description |
control_header |
A cache control header that can be set to "Public" or
"Private".
Private is default and indicates that only private caches may cache this page.
Proxy servers will not cache pages with this setting.
Public indicates public caches. Proxy servers will cache pages with this setting. |
Examples
<%response.CacheControl="Public"%>
or
<%response.CacheControl="Private"%>
|
Complete Response Object Reference
|
|
Get Your Diploma!
W3Schools' Online Certification Program is the perfect solution for busy
professionals who need to balance work, family, and career building.
The HTML Certificate is for developers who want to document their knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate is for developers who want to document their knowledge of JavaScript and the HTML DOM.
The XML Certificate is for developers who want to document their knowledge of XML, XML DOM and XSLT.
The ASP Certificate is for developers who want to document their knowledge of ASP, SQL, and ADO.
The PHP Certificate is for developers who want to document their knowledge of PHP and SQL (MySQL).
|
|