Hello,
Just a question, why are you using a meta if you can pass the header
directly?  The meta AFAIK is used so that the server adds the appropriate
lines to the header before sending the document.  

<meta HTTP-EQUIV="Content-Type" content="text/html; charset=windows-1256">

For example, adding the previous line to your html file will cause the
server to send "Content-type: text/html; charset=windows-1256" instead of
the usual "Content-type: text/html".  

If however you're using CGI, the server will not add any appropriate
headers since you're responsible for supplying all the headers from your
script.  So, adding that last line to a cgi script will be useless.

Same probably applies for your line.  Just add the "Refresh: 5" header to
your script instead of using the meta.

Hope this helps,,,

Aziz,,,

In article <[EMAIL PROTECTED]>, "Sawmaster"
<[EMAIL PROTECTED]> wrote:

> Can someone tell me why this isn't working on IE?
> 
> It works within Opera, I don't know about netscape yet.
> 
> print qq~<META http-equiv="refresh" content="5;
> URL=http://mypage.html";>\n~;
> 
>

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to