I'am populating a form by getting data from the database.
In the action I instantiate myform, set form data and call return forward as following.
ACTION 1
in the
JSP i have
But the form is not populated. Now if I put the form in session scope
request.getSession().setAttribute("data",myForm);
and in the jsp call
<html:text name="data" property="data1">
this works but I dont want to add my forms to session scope because I have many and also I think this also gives me the following problem when I hit my "next" link the form that i get in the action is empty.
thanks