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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I create a minute delay between pages???? 2

Status
Not open for further replies.

pilg

Programmer
Feb 16, 2001
82
GB
Is there any way I can create a delay between pages I need to wait 1 minute before I can retrive any results from a textfile, as it takes around 1 minute for the batch file to run and leave the results in the textfile, thanks pilg
 
You could use a javascript function to do it:

function redirectMe(){
location='thePageYouWant.asp';
}

Then, you just put this in the body tag:

<body onLoad=&quot;setTimeout('redirectMe();',60000)>

That should do it. :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top