I am trying to refresh the main frame of a page with three frames every 60 seconds. This is what my index.html looks like.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "<html>
<head>
<title>TWC VOD Monitoring Tool</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
function refreshPage()
{
while(1)
{
parent.main.history.go(0);
sleep(60);
}
}
</script>
</head>
<meta http-equiv="Refresh" content="5;url=javascript:refreshPage()">
<frameset rows="76,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="topframe.html" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="161,*" framespacing="0" frameborder="NO" border="0">
<frame src="leftFrame1.html" name="leftFrame" scrolling="NO" noresize>
<frame src="Homepage?style=styles/Homepage.xsl&dtdName=Homepage.dtd&docType=Homepage" name="main">
</frameset>
</frameset>
<noframes>
<body bgcolor="#eeeedf">
</body></noframes>
</html>
</html>
Every time I try to delay the next refresh of the page it causes my processor on the client machine to be used at 100%. Thanks for any help you can give me.
Randy
You can Email me at: RCooper@cinci.rr.com
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "<html>
<head>
<title>TWC VOD Monitoring Tool</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
function refreshPage()
{
while(1)
{
parent.main.history.go(0);
sleep(60);
}
}
</script>
</head>
<meta http-equiv="Refresh" content="5;url=javascript:refreshPage()">
<frameset rows="76,*" cols="*" frameborder="NO" border="0" framespacing="0">
<frame src="topframe.html" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="161,*" framespacing="0" frameborder="NO" border="0">
<frame src="leftFrame1.html" name="leftFrame" scrolling="NO" noresize>
<frame src="Homepage?style=styles/Homepage.xsl&dtdName=Homepage.dtd&docType=Homepage" name="main">
</frameset>
</frameset>
<noframes>
<body bgcolor="#eeeedf">
</body></noframes>
</html>
</html>
Every time I try to delay the next refresh of the page it causes my processor on the client machine to be used at 100%. Thanks for any help you can give me.
Randy

You can Email me at: RCooper@cinci.rr.com