Hi Rick and thanks for all the help!

I found that both of the methods work below. I assume its better to use the one that you helped me with as we are supposed to favor JSTL tags over Struts tags from what I read.

I looked up the struts-el stuff (thanks!) but I still have found no reference to the key word map that you told me about (used to get the collection out of the DynaAction form)....I just know it works.

I just wanted to thank you for helping me get this to work!

Thanks

Lynn


<logic:iterate name="PrintSessionFormBean" property="slideLots" id="lot" indexId ="i">
<tr><td><b>Lot</b></td></tr>
<tr><td>Enter lot number:<br /><html:text name="PrintSessionFormBean" property="slideLots" value=""/></td></tr>
<tr><td>&nbsp</td></tr>
<tr><td nowrap>Scan slides for lot:</td></tr>
<tr><td><html:textarea property="slideBarCodes" rows="15" cols="29"/></td></tr>
</logic:iterate>




<c:forEach items="${PrintSessionFormBean.map.slideLots}" var="lot">
<tr><td><b>Lot</b></td></tr>
<tr><td>Enter lot number:<br /><html-el:text property="slideLots" value="${lot}"/></td></tr>
<tr><td>&nbsp</td></tr>
<tr><td nowrap>Scan slides for lot:</td></tr>
<tr><td><html:textarea property="slideBarCodes" rows="15" cols="29"/></td></tr>
</c:forEach>




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to