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]
# 1
try this: [code]<%response.addHeader("Pragma", "No-cache");response.addHeader("Cache-Control", "no-cache");response.addDateHeader("Expires", 1);%>
Enygma42 at 2007-6-29 8:46:23 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...