Jan 12, 2003 #1 Pamy MIS Oct 15, 2002 29 SG Hi, Is there a way to automatically refresh a page when clicking the back button?
Jan 12, 2003 #2 topher0303 Programmer Jan 5, 2003 186 US I use ASP and put this at the top of my pages: <% Response.Expires = -1000 Response.CacheControl = "No-cache" %> If you are using strait html, you can put the equivelent meta tags in your <head>. <head> <meta http-equiv="EXPIRES" content="put a really old date/time here"> <meta http-equiv="CACHE-CONTROL" content="No-cache"> </head> Hope this helps. chris. Upvote 0 Downvote
I use ASP and put this at the top of my pages: <% Response.Expires = -1000 Response.CacheControl = "No-cache" %> If you are using strait html, you can put the equivelent meta tags in your <head>. <head> <meta http-equiv="EXPIRES" content="put a really old date/time here"> <meta http-equiv="CACHE-CONTROL" content="No-cache"> </head> Hope this helps. chris.