Hello, I want to create html file that will reload a page. I created this code, and save it as html: <html> <head> <meta http-equiv=â€refresh†content=2;url="http://www.mysite.comâ€> </head> <body> <iframe src=â€http://www.mysite.com†width=â€50%â€> </iframe> </body> </html> but when I load the page I see: Firefox can't find the file at /C:/Documents and Settings/com.COM-A55274F9C7A/My Documents/â€http://www.mysite.com†Can you please help me?
I think you have your quotes mixed up. The first quote should be in front of 2, like: <meta http-equiv="refresh" content="2;url=http://www.mysite.comâ€> That should be the fix
Thanks but still don't work I see that the problem is that is shows: C:/Documents and Settings/com.COM-A55274F9C7A/My Documents/â€http://www.mysite.com†instead of http://www.mysite.com Why is that, and how can I correct it?
Are you viewing the page locally? If so, maybe try posting it to a server and viewing it from there. That might have something to do with it. Another thing to try is just using the file name for the URL value. So instead of url=http://www.mysite.com you'd put url=index.html. And if you're just trying to reload the page, I believe you can even leave the url part out, like this meta http-equiv="refresh" content="2"