Setting timelimit for a page

liunx

Guest
Hi All,<br />
<br />
Here is the scenario.<br />
<br />
I have 3 pages - - Page1,Page2,Page3..<br />
<br />
On clicking a button in Page1 I should be able to go to page2 and show it with an image for 30seconds and then redirect it to the Page3 after 30 seconds..<br />
<br />
<br />
Is there a way I can do this?Any help would be greatly appreciated..<br />
<br />
Thanks in Advance<br />
NKR<!--content-->Use meta tags.<br />
<br />
Page 1<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"page2.html">Go to page 2!</a><br />
<br />
<br />
Page 2<br />
<br />
<head><br />
<meta http-equiv="refresh" CONTENT="30; URL=page3.html" /><br />
</head><br />
<body><br />
<img src=http://www.htmlforums.com/archive/index.php/"blah.gif" /><br />
</body><br />
<br />
<br />
Page 3<br />
<br />
<!-- Whatever page 3 has--><br />
<br />
<br />
Change all red into the correct pages.<br />
Change teal into the correct image.<br />
Change purple into correct number of seconds (30 is already done).<br />
<br />
<br />
If I understood you correctly, you wanted the second page to redirect 30 seconds after loading ITSELF, not 30 seconds after the image (which is existant for 30 seconds) disappears. If I misunderstood you and you need the other, please request it - all I need to do is change the timer to 60 seconds, and have a javascript thing show the image for 30 seconds.<br />
<br />
Enjoy.<!--content-->Hi,<br />
<br />
Thanks,That worked for me..<br />
<br />
What I have to do if I need to redirect to Page3,<br />
30seconds after the image disappears(exists for 30seconds)..<br />
<br />
Thanks in advance..<br />
Navi<!--content-->
 
Back
Top