response.expires = 0 은 캐시에 저장하지 않을 때 사용합니다.
다음과 같이 메타태그를 추가하면 캐시하지 않도록 하는 확률을 더 높일 수 있습니다.


<%response.expires = 0%>
<meta http-equiv="expires" content="<%=now()-100%> GMT">

또는

<%response.expires = 0%>
<meta http-equiv="Expires" content="0"/>


[출처 : http://devpia.com]

+ Recent posts