> If you're using a JSP 1.2 container (e.g. Tomcat 4.x, Resin 2.x),
> you can do
> this (and many other cool things) using the JSTL <c:forEach> tag:
>
>   <c:forEach items="items" var="item" varStatus="status">
>     <c:out value="${item}"/>
>     <c:if test="${!status.last}">
>       ...is followed by...
>     </c:if>
>   </c:forEach>
>
> This is a great reason to start getting familiar with JSTL. :-)

Does JSTL support nested collections?  I'm currently using the nested taglib
more than the logic taglib.

Michael


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

Reply via email to