This...
<c:out value="${stock.test[0]}"></c:out>
...works fine (with stock.test is of class ArrayList).
This...
<c:forEach var="i" begin="3" end="20" step="3">
<c:out value="${i}"/>,
</c:forEach>...and this...
<c:forEach var="item" items="${stock.test}">
<td><c:out value="${item}"/></td>
</c:forEach>... results in:
javax.servlet.ServletException: javax/servlet/jsp/jstl/core/LoopTagSupport
So it seems that the forEach tag is kind of "broken". Does anybody have an idea what I am doing wrong here?
I am using jakarta-taglibs-standard-1.0.3
Where can I download the sources for 1.0.3 so that I can debug at least?
Regards, Thilo.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
