First of all, I know this must be a frequently asked question. In java server pages, I would do this:
<% while someiterator.hasNext(){ %> <a href="/somepage?param1=<%=String strVal=(String)someiterator.next()%>">Go</a><br /> <% } This seems fairly strait forward. Using the struts framework and tags, I am struggling. <logic:iterate id="result" name="ParcelSearchForm" property="results"> <html:link page="/somepage.do" name="result" scope="page" paramId="parcel" ><bean:write name="result" property="parcel"/></html:link><br /> </logic:iterate> I am not sure what I need to use in order to grab the parcel value from the form bean. I know my syntax is wrong. Can someone please demonstrate the proper way to do this. Randall --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]