HTML

Author Thread:How to automatic refresh web page contents?
Suna
How to automatic refresh web page contents?
Posted:Wednesday, May 10, 2006 9:47 AM (UMST)

Hi,

I need to automatically referesh an Iframe content after certain time.

How i can do that.

 

Thanks
Suna


Average Rating:


Comments:


Author Thread:
asktech
How to automatic refresh web page contents?
Posted: Wednesday, May 10, 2006 10:10 AM (UMST)

Hi,

To automatically refresh the webpage, you can use meta tag to referesh it:

<html>
 <title>Page Header/title>
 <meta HTTP-EQUIV="REFRESH" content="900; url=./referesh.htm">
 <body>
 
 <iframe
  src ="http://www.CodersChoice.com"
  width="100%" height="100%">
 </iframe>
 
 </body>
</html>

 

save the above code by the name referesh.htm and change the value for the src to match your website name.

 

This would refresh the page evey 15 minutes. Content=900 can be changed to any number which you want to use.
It will be the seconds after which your page is reloaded.

 

Hope it helps!!

Average Rating:

Ferotech Solution Services Inc.