passing multiple parameters in <html:link> tag
Hi
I am building a struts applicatinon and need to pass multiple parameters using the <html:link> tag. I am trying to do this as -
<html:link href="detail.do" name="donorQueryForm" property="searchTerms"
paramId="recordNumber" paramName="gift" paramProperty="recordNumber"
paramId="isDonorName" paramName="donorQueryForm"
paramProperty="isDonorName">
<c:out value="${gift.donorList}"/>
</html:link>
This is failing. Can someone advise me on how to pass multiple parameters using <html:link> tag
thanks