Hi,
I need to automatically referesh an Iframe content after certain time.
How i can do that.
ThanksSuna
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!!