Loading multiple forms in single jsp
Hi,
My jsp page has multiple forms (one form for each table which has specific info). So assume it has 3 tables, so 3 forms.
I need to load all the form when the page is loaded.
code:
<FORM name=form1 action="/action1" method=post></FORM>
<FORM name=form2 action="/action2" method=post></FORM>
<FORM name=form3 action="/action3" method=post></FORM>
So if I need to load all the forms, how should I proceed. Also please note each form has its own form class and action class.
For e.g. Assume Page A (From Page A I am coming to this form page via a hyperlink and there is no action class in between) calls the page with 3 forms and I need to display all the values in the 3 forms. So how can I call the action classes for each of the 3 forms.
So when and how will the action1, action2, action3 called?
Any help would be greatly appreciated.
Thanks.

