RE: Appending params to the URL of ActionForward

2003-06-06 Thread DurgaPrasad Guduguntla
Thanks a lot! It worked perfectly. Regards, Durgaprasad -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2003 8:26 PM To: Struts Users Mailing List Subject: RE: Appending params to the URL of ActionForward You can create a new action forward

RE: Appending params to the URL of ActionForward

2003-06-05 Thread Andrew Hill
You can create a new action forward and return that. The code below creates a new actionforward based on the path in an existing one and appending some parameter: ActionForward forward = mapping.findForward(myforward); forward = new ActionForward( addParameterToUrl(forward.getPath(),foo,bar),