Forum Moderators: open
Javascript called from "onload"
function ReDirect() {
var i, args=ReDirect.arguments; document.returnValue = false;
for (i=0; i<(args.length-1); i+=2)
eval(args[i]+".location='"+args[i+1]+"'");
}
<body onload="Redirect('YourFrame','YourNewURL');return document.returnValue">
</body>
Or:
<meta http-equiv="Refresh" content="TimeDelay;URL=YourNewUrl" />
asp
The 1st one you gave me did not work for me.
<meta http-equiv="Refresh" content="TimeDelay;URL=http://www.google.com" />
I found this and it worked.
<META HTTP-EQUIV="Refresh" CONTENT="3; url=http://www.google.com">
This other one you gave me works and looks the same.
<meta http-equiv="refresh" content="5;URL=http://www.google.com" />
What is the #3 or #5 for in CONTENT="3? Is it the value of delay time? I'm 99.9% sure it is.
Once again, thank you very much for the help!