Hello all, I have two jsp pages say Page1 and Page2 backed by their corresponding action. When the Page1 is first loaded the corresponding action's prepare() method is used to provide the data for the page based on the parameter sent by the page that precedes the Page1. Upon submit the user is navigated to Page2 and upon submit on that page(Page2) the user is navigated back to Page1. Now the parameter used to provide the data for Page1 is lost as it was provided by another page. So Is there any way that i can persist the action properties during this process.
Is session only efficient way to do that or is there any alternative? I have been using session to store the properties for now. -- Thanks, Prashant Khanal