I am new to struts. I am trying to add parameters to a link using <html:link>someplace</html:link>. Here is the code below. For each iteration, I want to create a dynamic link.
<logic:iterate id="result" name="ParcelSearchForm" property="results"> <tr> <td><html:link forward="ParcelResult" paramName="ParcelSearchForm" paramId="parcel" paramProperty="concatenateAddress"><bean:write name="result" property="parcel"/></html:link></td> <td><bean:write name="result" property="year"/></td> <td><bean:write name="result" property="parcelStatus"/></td> <td><bean:write name="result" property="concatenateAddress"/></td>me </tr> </logic:iterate> I have a ActionForm called ParcelSearchAction and a Form bean called Parcel. How do I generate a dynamic link like the one shown below: http://www.somwhere.com/somepage?key=r123456789&year=2004 Thanks, Randall --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]