Save it on a session.

on FormA
HttpSession session = request.getSession();
session.setAttribute("somename", someObject);

on FormB
HttpSession session = request.getSession();
MyObject someObject = (MyObject) session.getAttibute("somename");

On Fri, 2004-02-13 at 15:51, Kelly Goedert wrote:
> Hi all,
> 
> I would like to know what would be the best approach to a situation like 
> this:
> 
> I have a form named formA which executes actionA, then he is forwarded 
> to formB where he will execute actionB on submit.
> 
> The problem is: when I execute actionB, I have to know about some data 
> the user posted on formA.
> How could I solve this problem??
> 
> Thanks
> 
> Kelly.
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to