Re: How can I forward to another action with userspecific data

2002-04-17 Thread Victor Hadianto
Yes, Try: String next = mapping.findForward("ActionB").getPath(); next = next + "?data=1&data=2"; // don't pass the true parameter if not redirection. return new ActionForward(next, true); -- Victor On Wed, 17 Apr 2002 18:09, you wrote: > Hi, > > I would like to do the following > > I hav

RE: How can I forward to another action with userspecific data

2002-04-17 Thread Maris Orbidans
y, April 17, 2002 11:09 AM > To: Struts User (E-Mail) > Subject: How can I forward to another action with userspecific data > > > Hi, > > I would like to do the following > > I have a ActionA wich has to forward to a action ActionB but > has to submit > some d

How can I forward to another action with userspecific data

2002-04-17 Thread Dirk Storck
Hi, I would like to do the following I have a ActionA wich has to forward to a action ActionB but has to submit some data from ActionA ActionA calls->/actionB.do?data1=1&data2=2 within the action ActionA. Is that somehow possible ? Thanks !! -- To unsubscribe, e-mail: