ASP CacheControl 속성


❮ 완전한 응답 객체 참조

CacheControl 속성은 프록시 서버가 ASP에서 생성된 출력을 캐시할 수 있는지 여부를 설정합니다. 기본적으로 프록시 서버는 캐시 복사본을 보관하지 않습니다.


통사론

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.


<%response.CacheControl="Public"%>

or

<%response.CacheControl="Private"%>

❮ 완전한 응답 객체 참조