fea jabi ha scritto:
<c:url value="/DispatchAction.do" var="addUrl">
           <c:param name="method" value="add"/>
</c:url>
<html:link href="${addUrl}" transaction="true">
       <fmt:message key="lbl.addlink" bundle="${appbundle}"/>
</html:link>

A link uses normally the GET HTTP method, therefore all your parameters are put in the query string. Try making a "fake" form, in which all your parameters are put in <html:hidden> items and a link that in fact invokes a javascript call to submit the form.

<html:form action="/DispatchAction.do" transaction="true">
 <html:hidden name="method" value="add" />
<a href="" onclick=" [formbean].submit()"><fmt:message key="lbl.addlink" bundle="${appbundle}"/> </a>
</html:form>


Replace [formbean] with the form-bean name connected to DispatchAction.
I don't know if it works, HTH anyway.
Ciao
Antonio

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to