Hi,
I want to use a break in a c:forEach as follows:
c:forEach items="${lecContacts}" var="lecContactFirst" varStatus="status">
<c:choose>
<c:when test="${status.first}">
<c:set var="lecContactId" value="${lecContactFirst}"
/>
</c:when>
<c:otherwise>
<!-- break here How to do that ??-->
</c:otherwise>
</c:choose>
</c:forEach>
I don't want to use flag if that is possible.
Thanks in advance,
Vijay
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]