I switched my code to the following jstl tags as suggested. The first part works with no problem, but I get no output from the tile attempt except for the layout being applied with the word "testing". Do I need to use <tile:importAttribute/> or some other tag to make the quote bean accessible from the tile?
yes: <tiles:importAttribute name="quote"/>
<c:forEach var="quote" items="${quoteForm.quoteValues}">
<!-- no tile used --> <table>
<tr>
<td>
<c:out value="${quote.offerPriceLightValue.sizeValue.size}"/>
note that in a servlet 2.4/jsp 2.0 webapp you don't even have to use c:out. you can just do ${quote.offer...}.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]