hy @ all!
i want to have multiple submit-bottons in one jsp! for each submit-button another action...i tried:
jsp:
<html:form action="/ausgabeAction.do" method="forward" >
<html:submit styleClass="cssMenu" value="Ausgabe" property="ausgB"/><br />
</html:form>
<html:form action="/produktivitaetsAction.do" method="forward" >
<html:submit styleClass="cssSubmenu" value="Produktivit�tsausgabe" property="prodAusgB"/><br />
</html:form>
<html:form action="/zusaetzlicheAction.do" method="forward" >
<html:submit styleClass="cssSubmenu" value="Zus�tzliche Ausgaben" property="zAusgB"/><br />
</html:form>
<html:form action="/logoutAction.do" method="forward" >
<html:submit styleClass="cssMenu" value="Logout" property="logoutB"/>
</html:form>
the action:
public ActionForward execute(ActionMapping actionMapping,
ActionForm actionForm,
HttpServletRequest servletRequest,
HttpServletResponse servletResponse) {
return actionMapping.findForward("output");
}
when i start it its ignored and not displayed, neither an error...
its very simple (i thought) - no data from any form, only a forward
thx in advance!
ciao baer