Quote Originally Posted by Egg Bramhill View Post
If this is causing problems then you can create a <head> placeholder and paste in the following code:

Code:
<script language="JavaScript" type="text/javascript">
//  Published at: scripts.tropicalpcsolutions.com
var reloaded = false;
var loc=""+document.location;
loc = loc.indexOf("?reloaded=")!=-1?loc.substring(loc.indexOf("?reloaded=")+10,loc.length):"";
loc = loc.indexOf("&")!=-1?loc.substring(0,loc.indexOf("&")):loc;
reloaded = loc!=""?(loc=="true"):reloaded;

function reloadOnceOnly() {
    if (!reloaded) 
        window.location.replace(window.location+"?reloaded=true");
}
reloadOnceOnly(); //You can call this via the body tag if desired
</script>
I found this script HERE It forces the page to refresh once only.
Hi Egg,

So does this need to be put in every page on the site to work properly?

I like the idea of preempting the problem if it's possible.

Thanks,

Ed......:-)