i have a
jsp page in that i have multiple form tags like
<form:form action="action1.htm" method="post" commandName="commandName1" > </form>
<form:form action="action2.htm" method="post" commandName="commandName2" > </form>
<form:form action="action3.htm" method="post" commandName="commandName3" > </form>
<form:form action="action4.htm" method="post" commandName="commandName4" > </form>
in this , i want to call different controller for each action & return the ModelAndView Object to the parthicular form tag
Can anyone help me out on this?
thanks in advance
Karhtik