Has anybody used Struts-EL (expression language) TLD How do I iterate over a collection using
<logic:iterate id="tran" name="trans" property="transactions" scope="request">
<tr>
<td><bean:write name="trans" property="acctno"/></td>
<td><bean:write name="trans" property="testcode"/></td>
<td><bean:write name="trans" property="srcfac"/></td>
</tr>
</logic:iterate>
There is no bean:write in struts-el.tld , what is the equivalent of the above using
struts-taglib-el.tld
Thanks
regards
Vinay

