Re: persisting data across different form

2009-02-02 Thread Paweł Wielgus
Hi, consider following: 1. jsp with hidden field myField="someValue" 2. post to an action1 -> action1 can read myField and there is someValue in it 3. redirect to another action2 but with redirect="false" in struts-config.xml - it's very important to add redirect="false", it will not create new req

Re: persisting data across different form

2009-02-01 Thread overtakerx
Hi I was told that I can use html:hidden to pass the data between the two forms, however after searching around I couldn't find an example on how to do it, anyone has any idea how to do it or whether it is possible ? Paweł Wielgus wrote: > > Hi, > first consider one common form for this two

Re: persisting data across different form

2009-01-30 Thread Paweł Wielgus
Hi, first consider one common form for this two actions maybe they have more in common. Then You can append this x value to redirection params and set it for second action/form, last thing I would do would be session. Best greetings, Paweł Wielgus. 2009/1/30 overtakerx : > > Hi > > > If I have fo