Afternoon, been googling this for the last hour and it shouldnt be to hard to find, i have been asked to create a page that will refresh our network monitoring tools every minute.
My first thoughts were to use vbs and get it to set focus on the ie windows and send key stroke F5 but that didnt seem to work so i thought i'd load it in an iframe and get javascript on the parent window to reload it every minute.
here's what i have but it doesn't appear to reload, i have used a site that reloads every time you hit f5 to check if it works and i can't seem to get it. Can anyone suggest what to do?
<html>
<head>
<script type="text/javascript">
function load()
{
var f = document.getElementById('IFrame1');
f.src = f.src;
settimeout(load(),600000)
}
</script>
</head>
<body onload="load()">
<iframe id="IFrame1" src=" width="100%" height="100%" frameborder="0" scrolling="auto">
TEXT FOR NON-COMPATIBLE BROWSERS HERE</iframe>
</body>
</html>
My first thoughts were to use vbs and get it to set focus on the ie windows and send key stroke F5 but that didnt seem to work so i thought i'd load it in an iframe and get javascript on the parent window to reload it every minute.
here's what i have but it doesn't appear to reload, i have used a site that reloads every time you hit f5 to check if it works and i can't seem to get it. Can anyone suggest what to do?
<html>
<head>
<script type="text/javascript">
function load()
{
var f = document.getElementById('IFrame1');
f.src = f.src;
settimeout(load(),600000)
}
</script>
</head>
<body onload="load()">
<iframe id="IFrame1" src=" width="100%" height="100%" frameborder="0" scrolling="auto">
TEXT FOR NON-COMPATIBLE BROWSERS HERE</iframe>
</body>
</html>