in
servlets i use the following.
THis refers to HTTP version 1.0
response.setHeader("Pragma", "no-cache"); // HTTP 1.0
This refers to HTTP version 1.1
response.setHeader("Cache-Control", "no-cache"); // HTTP 1.1
Sooo if you make the leap...
THis refers to HTTP version 1.0
<meta http-equiv="pragma" content="no-cache">
THis refers to HTTP version 1.1
<meta http-equiv="Cache-Control" content="no-cache" forua="true"/>
I hope that helps you.
WIth reguard to setting a page refresh, i was wondering the following...
<%
//Refresh the page every 30 seconds automatically.
response.setHeader("Refresh","30");
%>
Why not use
Java script?
[ January 31, 2002: Message edited by: Mercenary_Steel ]