Is it possible to create a dashboard and then have the dashboard to automatically refresh itself?
The idea being, the Manager has the dashboard on screen and the contents update without the user having to press F5 to refresh the screen.
Moderators: Bob Cergol, Data Access, Cintac
</script>
<META HTTP-EQUIV=REFRESH CONTENT=60>
<script>
<META HTTP-EQUIV=REFRESH CONTENT=60>
var RefreshID = setInterval("window.location.reload()",10000);
function StopRefresh(){
clearInterval(RefreshID);
}
window.attachEvent('onresize', StopRefresh);