delay before redirect

2003-06-25 Thread Ionel Gardais
Hi, is it possible to set a delay before a redirect ? I'd like to do that in order to display a result page for 5 seconds and then go to the welcome page. I am already using an http-equiv=refresh with a 300 seconds delay for the whole page but I want to bypass it with a redirection after 5

Re: delay before redirect

2003-06-25 Thread James Mitchell
://www.struts-atlanta.org - Original Message - From: Ionel Gardais [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 7:56 AM Subject: delay before redirect Hi, is it possible to set a delay before a redirect ? I'd like to do that in order

RE: delay before redirect

2003-06-25 Thread Filip Polsakiewicz
-Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 3:01 PM To: Struts Users Mailing List Subject: Re: delay before redirect I would suggest staying with the meta tag approach. This lessens the burden on the container and let's

Re: delay before redirect

2003-06-25 Thread James Mitchell
] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 9:06 AM Subject: RE: delay before redirect -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 3:01 PM To: Struts Users Mailing List Subject: Re: delay

Re: delay before redirect

2003-06-25 Thread Ionel Gardais
Hi James, Thanks for the reply. Can I had another refresh equiv in addition to the first ? (I would then get two meta refresh, one set at 5 minutes and one at 5 seconds) The first meta refresh is hard coded in the tiles template I use for my pages that's why I am looking for something to

Re: delay before redirect

2003-06-25 Thread James Mitchell
, 2003 9:09 AM Subject: Re: delay before redirect Hi James, Thanks for the reply. Can I had another refresh equiv in addition to the first ? (I would then get two meta refresh, one set at 5 minutes and one at 5 seconds) The first meta refresh is hard coded in the tiles template I use for my

Re: delay before redirect

2003-06-25 Thread Ionel Gardais
- the user asks for an edit page. - a form is displayed. - when the form is filled the user clicks on the validate button. - action is called and a server side computation is done. - when the computation is completed, a page display a success or failure message to the user - on success, the main

Re: delay before redirect

2003-06-25 Thread James Mitchell
just be /index.jsp. -- 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:00 AM Subject: Re: delay before redirect

Re: delay before redirect

2003-06-25 Thread Ionel Gardais
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.

Re: delay before redirect

2003-06-25 Thread James Mitchell
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