Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to prevent screen flickering when using on load command

Status
Not open for further replies.

Scorpionkingct

IS-IT--Management
Mar 6, 2012
4
US
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()">
 
Also posted at thread215-1677141

If you are going to cross post please tell us about it so we are not duplicating answers and you are not getting confused with the various responses.



Chris.

Indifference will be the downfall of mankind, but who cares?
Time flies like an arrow, however, fruit flies like a banana.
Webmaster Forum
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top