Ok, so add a small script in the body of your page that does it's own (e.g.
overrides) the meta refresh.

Here's what I mean (change to your liking):

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
 <title>Test Page</title>
 <meta http-equiv="Refresh" content="300;
URL='javascript:location.reload()'">
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<body>

 <script>
setTimeout("window.location='?'",5000)
</script>

</body>
</html>





--
James Mitchell
Software Developer/Struts Evangelist
http://www.struts-atlanta.org


----- Original Message -----
From: "Ionel Gardais" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Wednesday, June 25, 2003 10:47 AM
Subject: Re: delay before redirect


> James Mitchell wrote:
>
> >So what's stopping you from putting this
> >
> ><META HTTP-EQUIV="Refresh" CONTENT="5; URL="<html:rewrite
> >forward="someGlobalForward"/>/">
> >
> >...in the head section of the page?
> >
> >
> I already have a <META HTTP-EQUIV="Refresh" CONTENT="300;
> URL="javascript:location.reload()"> from the Tiles template.
>
> I am only overriding the body frame for each vue. As the meta equiv
> should be placed inside the head tag, I have no way to alter it.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]


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

Reply via email to