> -----Original Message----- > From: Randall Svancara [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 02, 2004 4:01 PM > To: [EMAIL PROTECTED] > Subject: Adding parameters to a link > > > 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>
You're going to have to build a hashmap of the items you want and pass that off to html:link to get this to work. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]