Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Refresh a page

Status
Not open for further replies.

Pamy

MIS
Oct 15, 2002
29
0
0
SG
Hi,

Is there a way to automatically refresh a page when clicking the back button?
 
I use ASP and put this at the top of my pages:

<%
Response.Expires = -1000
Response.CacheControl = &quot;No-cache&quot;
%>


If you are using strait html, you can put the equivelent meta tags in your <head>.

<head>
<meta http-equiv=&quot;EXPIRES&quot; content=&quot;put a really old date/time here&quot;>
<meta http-equiv=&quot;CACHE-CONTROL&quot; content=&quot;No-cache&quot;>
</head>

Hope this helps.

chris.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top