禁止页面缓存的代码

可以禁止html在客户端的浏览器中缓存,如果用户点击“后退”按钮,浏览器自动再次从服务器上获得最新的页面。

HTML:





ASP
response.expires=0
response.addHeader("pragma","no-cache")
response.addHeader("Cache-Control","no-store, must-revalidate")

PHP
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-store, must-revalidate");
header("Pragma: no-cache");

JSP:
response.addHeader("Cache-Control", "no-store, must-revalidate");
response.addHeader("Expires", "Thu, 01 Jan 1970 00:00:01 GMT");

你可能感兴趣的:(FY_JSP)