- </FONT>Cache-Control: no-store
- Cache-Control: no-store, must-revalidate
- Cache-Control: no-store,max-age=0,must-revalidate
- Cache-Control: max-age=0,must-revalidate
- </FONT>Cache-Control: must-revalidate
HTML
- <META http-equiv="Expires" content="-1">
- <META http-equiv="Pragma" content="no-cache">
- <META http-equiv="Cache-Control" content="no-store,max-age=0,must-revalidate ">
ASP
- <%
- Response.Expires = 0
- Response.AddHeader "Pragma","no-cache"
- Response.AddHeader "Cache-Control","no-store,max-age=0,must-revalidate"
- %>
JSP
- <%
- response.setHeader("Cache-Control","no-store,max-age=0,must-revalidate");
- response.setHeader("Pragma","no-cache");
- response.setDateHeader("Expires",0);
- if (request.getProtocol().equals("HTTP/1.1"))
- response.setHeader("Cache-Control", "no-store,max-age=0,must-revalidate");
- %>
PHP
- <?
- header("Pragma: no-cache");
- header("Cache-Control: no-store,max-age=0,must-revalidate");
- ?>