Html/Jsp网页不缓存

HTML
 <META   HTTP-EQUIV="pragma"   CONTENT="no-cache">   
  <META   HTTP-EQUIV="Cache-Control"   CONTENT="no-cache,   must-revalidate">   
  <META   HTTP-EQUIV="expires"   CONTENT="Wed,   26   Feb   1997   08:21:57   GMT">   
  或者<META   HTTP-EQUIV="expires"   CONTENT="0">   





JSP
<%     
  response.setHeader("Cache-Control","no-store");     
  response.setHeader("Pragrma","no-cache");     
  response.setDateHeader("Expires",0);     
  %>

你可能感兴趣的:(html,jsp,cache)