PDA

View Full Version : need help with some META specifications


fan
02-21-2003, 09:35 AM
hi there
i have a little problem
i made a HTML page and i want it to be refreshed after 10 sec.
i tried the following structures but they work for only 6 seconds

<meta http-equiv=refresh content="6;url="main.html">

or

<meta name="refresh" content="6,main.html">


help me
i'm in a hurry with my site

fan

hogtied
02-21-2003, 09:45 AM
you have an extra set of quotes before the main.html.

<meta http-equiv=refresh content="5;url=main.html">

if this doesn't work try put the absolute path the the main.html file

ie. http://www.domian.com/main.html

cg9com
02-21-2003, 03:24 PM
Originally posted by fan

i tried the following structures but they work for only 6 seconds

:confused:
couldnt you just change the 6 to a 10?
i would do this.

<meta http-equiv="refresh" content="10" />

you could do it in javascript also ...

fan
02-21-2003, 07:17 PM
Hey cg9com !!
Do you think i'm stupid or what?!?
I tried this too, but it didn't work.

Is there anyone who can help me?!?
Does anyone know HTML?


FAN

meow
02-22-2003, 02:29 AM
<meta http-equiv="refresh" content="n;url=http://www.example.com">

where 'n' is the number of seconds before the redirect take place.

fan
02-22-2003, 10:11 AM
thanks to all!