Scorpionkingct
IS-IT--Management
We have this ASP page that is using this code
, problem is we display this on 8 monitors and the screen flickering is intense when calling back the page, how to prevent or stop this easily, i heard of AJAX and other commands, but want something easy to implement. The 42 monitors screen refresh rate is at 60 hertz, and cannot be changed. Any thoughts?
<noscript>
<meta http-equiv="refresh" content="15">
</noscript><script language="JavaScript1.1">
var sURL = unescape(window.location.pathname);
function doLoad()
{
setTimeout( "refresh()", 10*1000 );
}
function refresh()
{
window.location.replace( sURL );
}
//-->
</script></head>
<body onload="doLoad()">
, problem is we display this on 8 monitors and the screen flickering is intense when calling back the page, how to prevent or stop this easily, i heard of AJAX and other commands, but want something easy to implement. The 42 monitors screen refresh rate is at 60 hertz, and cannot be changed. Any thoughts?
<noscript>
<meta http-equiv="refresh" content="15">
</noscript><script language="JavaScript1.1">
var sURL = unescape(window.location.pathname);
function doLoad()
{
setTimeout( "refresh()", 10*1000 );
}
function refresh()
{
window.location.replace( sURL );
}
//-->
</script></head>
<body onload="doLoad()">