I wish to use anchors instead of submit button in a struts tag form. Can I do it ? How should i create it ?
please help
I wish to use anchors instead of submit button in a struts tag form. Can I do it ? How should i create it ?
please help
For anchor using struts tag use this
<s:url id="url" action="dummyAction">
<s:param name="parameterName"><s:property value="parameterValue"/></s:param>
</s:url>
<s:a href="%{url}">Click here</s:a>
I'd suggest just doing a javascript:form.submit() inside your anchor tag href