ASP ExpiresAbsolute 속성


❮ 완전한 응답 객체 참조

ExpiresAbsolute 속성은 브라우저의 캐시된 페이지가 만료되는 날짜와 시간을 설정합니다. 사용자가 이 날짜/시간 이전에 같은 페이지로 돌아가면 캐시된 버전이 표시됩니다.


통사론

response.ExpiresAbsolute[=[date][time]]

Parameter Description
date Specifies the date on which the page will expire.

If this parameter is not specified, the page will expire at the specified time on the day that the script is run.

time Specifies the time at which the page will expire.

If this parameter is not specified, the page will expire at midnight of the specified day.


다음 코드는 페이지가 2012년 10월 11일 오후 4시에 만료됨을 나타냅니다.

<%response.ExpiresAbsolute=#October 11,2012 16:00:00#%>

❮ 완전한 응답 객체 참조