언어별 캐쉬 삭제방법

01 14, 2007 01:40
 
* WML *

<meta http-equiv="Cache-Control" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<meta http-equiv="Pragma" content="no-cache"/>

* PHP *

header("Cache-Control:no-cache");
header("Expires:0" );
header("Pragma:no-cache");

* ASP *

Response.AddHeader "Cache-Control", "no-cache"
Response.AddHeader "Expires", "0"
Response.AddHeader "Pragma", "no-cache"

*JSP

response.setHeader("Pragma", "No-cache");
response.setDateHeader("Expires", 0);
response.setHeader("Cache-Control", "No-cache");

브니 Programs/Web Programs

01 14, 2007 01:40 01 14, 2007 01:40
Trackback Address:http://limcom.co.kr/blog/trackback/1
[로그인][오픈아이디란?]
오픈아이디로만 댓글을 남길 수 있습니다