how to load-show one web page after another page?

  • Thread starter Thread starter Janet. West
  • Start date Start date
J

Janet. West

Can you tell me how to make browsers (either IE or Netscape) to load and
show multiple web pages consecutively? I means its like a continuous slide
show of multiple pictures from different web sites.
Thank you.
 
Kev, Thank you.
But after I open the first blah1.com.
How do I open the second blah2.com?
I cannot embed this meta tag in blah2.com because that web page does not
belongs to me.
Thank you, Jan
 
I think you have to move to a solution that uses frames, and
script in one of the frame that uses the setTimeout method of the
window object to have a function called after a time interval.
This function in turn loads a new page in another of the frames
each time it is called.
 
Okay.... after I read your original post I went and had a play with html
(haven't done it for a while so a bit rusty). What I did was create a page
for each image (or set of images) with the META tag calling the next page of
mine. Each page then used a IMG tag with the SRC being a url for the
required picture(s). This is one simple page:

<html>
<head><title>Redirect to Page 2</title>
<meta http-equiv="refresh" CONTENT="5; url=2.htm">
</head>
<body background="bg.jpg">
<a href="index.htm">Click here to stop</a>
<br><br>
<img
src="http://tubes.ominix.com/art/a/critters/duck-white-right-rear.png">
</body>

The "2.htm" page referenced would have a different url for the IMG src. This
way I retain control of the display and never have to take the user off
site.

Protocol would be to get the other site owners' permission to link directly
to whatever picture you wanted off his/her site.

Kev
 
OK. Kev.
Actually, I do want to transfer control to the web pages.
It would look like a continuous series of web pages, show like slide show.
But do not need to show like image pictures. Can this be done?

I could not make yours html work. Thank you, Jan
 
OK. Kev.
Actually, I do want to transfer control to the web pages.
It would look like a continuous series of web pages, show like slide show.
But do not need to show like image pictures. Can this be done?

I could not make yours html work. Thank you, Jan
 
Back
Top