> How do you determine if your on the last element of your 
> logic:iterate loop?

JSTL makes this very easy. Something like:

<c:forEach items="${someCollection}" var="oneItem" varStatus="status">
     <c:if test="${status.last}">
            stuff to do in the last iteration
      </c:if>
</c:forEach>


--
Tim Slattery
[EMAIL PROTECTED]


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

Reply via email to