Reload the page automatically every x minutes.

Reload every 20 minutes, forces the browser to return to Login page after server timeout
JavaScript


if (document.images)
    setTimeout('location.reload(true)',1000*60*20); // forces a reload from the server
else
    setTimeout('location.href = location.href',1000*60*20);  // just reloads the page

Posted by fbrefere001 on Tuesday February 21, 2006