> shouldn't that be?
> >    <c:if test="${stat.last}">

Yes, it sure should. And the first line should be:

 <c:forEach items="${foo.bar}" var="bar" varStat="stat">

So the whole thing should look like this:

<c:forEach items="${foo.bar}" var="bar" varStat="stat">
   <c:if test="${stat.last}">
       <do what needs to be done
   </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