It looks like you don't want your page to be cached.. on the client-side that can be done with this meta tag, insert between <head></head> tags.
Code:
<meta http-equiv="PRAGMA" content="NO-CACHE" />
Alternatively if you are using a server-side language you can also do this in the HTTP headers. This is the PHP version. But you can make HTTP header changes with any server-side language, the headers will be the same.
Code:
header("Expires: Mon, 14 Jul 1789 12:30:00 GMT"); // Date in the past
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache"); // HTTP/1.0
Regards,
Rich
::::::::::::::::::::::::::::::::::::::::::
The Spicy Peanut Project
http://www.spicypeanut.net
::::::::::::::::::::::::::::::::::::::::::