언어별 캐쉬 삭제방법
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"); |
Trackback Address:http://limcom.co.kr/blog/trackback/1