Re: Multi page form submission using struts
Posted By:
John_Hughes
Posted On:
Thursday, September 30, 2004 07:25 AM
Is your action mapping, what is the scope attribute set to? You may need to set it to scope="session". This way the form data will be passed in the session so that the data from the first page is still there when you submit the second page.
Otherwise, the values from the first page will be lost because the actionform gets recreated.
Another option is to set the scope="request" & use tags in the 2nd page to hold the values from the first page. Then when the 2nd page gets submitted, you will have the values from boths forms in the actionform when you copy the data over.
Re: Multi page form submission using struts
Posted By:
Anonymous
Posted On:
Friday, September 17, 2004 02:20 AM
Abhay, i saw the same requirement which is answered in this forum. Check it out, maybe the question is not same but the answer will suits for u r question. I hope u r aware of it but soory to remember you.