Andrew Chapman wrote:
<c:set var="formRow"> <input type="text" name="address${rowIndex}"/> </c:set>
<c:forEach begin="1" end="3" varStatus="status"> <c:set var="rowIndex" value="${status.index}"/> <c:out ${formRow} escapeXml="false"/> </c:forEach>
Why don't you just write:
<c:forEach begin="1" end="3" varStatus="status">
<input type="text" name="<c:out value="${status.index}">"/>
</c:forEach>Lutz
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
