RE: Forward to the same page

2003-08-14 Thread Norr, Peter
11, 2003 6:33 PM To: struts-user Subject: Re: Forward to the same page On 11/08/2003 13:25 Dirk Behrendt wrote: Hello! I am still searching for a possibility to forward to the same page. I want, that the user can switch the language at runtime. After choosing the LanguageAction Class

RE: How to realize forward to the same page?

2003-08-14 Thread Rohit Aeron
Try putting forward as the same page. Regards Rohit -Original Message- From: Dirk Behrendt [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 5:13 PM To: [EMAIL PROTECTED] Subject: How to realize forward to the same page? Hello! I want, that the user can switch

Re: Forward to the same page

2003-08-14 Thread Mark Lowe
You can use a global forward and always go back to that.. return mapping.findForward(myglobal.forward); Cheers Mark On Monday, August 11, 2003, at 01:25 PM, Dirk Behrendt wrote: Hello! I am still searching for a possibility to forward to the same page. I want, that the user can switch

AW: How to realize forward to the same page?

2003-08-14 Thread Dirk Behrendt
Mailing List Betreff: RE: How to realize forward to the same page? Try putting forward as the same page. Regards Rohit -Original Message- From: Dirk Behrendt [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 5:13 PM To: [EMAIL PROTECTED] Subject: How to realize forward

RE: Forward to the same page

2003-08-14 Thread Andrew Hill
allow you to extrapolate the appropriate url or forward name to forward to). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, 11 August 2003 20:26 To: [EMAIL PROTECTED] Subject: Forward to the same page Hello! I am still searching for a possibility

Forward to the same page

2003-08-14 Thread Dirk Behrendt
Hello! I am still searching for a possibility to forward to the same page. I want, that the user can switch the language at runtime. After choosing the LanguageAction Class is called and switches the Locale. But it is necessary to give a forward. Example: (before forward -- after forward

RE: How to realize forward to the same page?

2003-08-11 Thread Yansheng Lin
return new ActionForward(mapping.getInput()); will return you to where you came from. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: August 6, 2003 5:43 AM To: [EMAIL PROTECTED] Subject: How to realize forward to the same page? Hello! I want, that the user

RE: Forward to the same page

2003-08-11 Thread Bailey, Shane C.
to a non-mapped page with a method already in the Action. -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Monday, August 11, 2003 9:06 AM To: Struts Users Mailing List Subject: RE: Forward to the same page Well if several page can submit to the same action , only

Re: Forward to the same page

2003-08-11 Thread Paul Thomas
On 11/08/2003 13:25 Dirk Behrendt wrote: Hello! I am still searching for a possibility to forward to the same page. I want, that the user can switch the language at runtime. After choosing the LanguageAction Class is called and switches the Locale. But it is necessary to give a forward. Example

How to realize forward to the same page?

2003-08-09 Thread Dirk Behrendt
Hello! I want, that the user can switch the language from a drop down menu at runtime. When he chose a language, an action class is called and sets the locale. I want, that there is no forward to another page. The current page should be maintained. When I do it without the forward tag, an empty

AW: How to realize forward to the same page?

2003-08-06 Thread Dirk Behrendt
to realize forward to the same page? return new ActionForward(mapping.getInput()); will return you to where you came from. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: August 6, 2003 5:43 AM To: [EMAIL PROTECTED] Subject: How to realize forward to the same page