timestamp
Hi, does anyone know how to write a timestamp codes for JSP page so tat my JSP page wont be cached?thx!
[124 byte] By [
des_xu] at [2007-9-26 2:03:32]

try this: [code]<%response.addHeader("Pragma", "No-cache");response.addHeader("Cache-Control", "no-cache");response.addDateHeader("Expires", 1);%>