Warwick Boote wrote:
> The output of this shows a list of links, but i want &stencilName=XXXX
> apended to the url... how do i do that?
>
> <logic:iterate id="iterator1" name="stencils" scope="session"
> type="com.eurobenefits.dta.domain.StencilSummary">
> <html:link page="/stencilname.do?action=doopenfile" ><bean:write
> name="iterator1" property="stencilName" filter="true"/></html:link> <br>
> </logic:iterate>
>
> I need to use the paramName="stencilName" or somthing like that but nothing
> seems to work.
this should work :
<logic:iterate id="iterator1" name="stencils" scope="session"
type="com.eurobenefits.dta.domain.StencilSummary">
<html:link href="/stencilname.do?action=doopenfile" paramId="stencilName"
paramName="iterator1" paramProperty="stencilName" >
<bean:write name="iterator1" property="stencilName"
filter="true"/></html:link> <br>
</logic:iterate>
.B