JSTL Loop
<c:forEach begin="0" end="${numbers}" var="status">
${status}
<c:if test="${status %2 == 0}">hi</c:if>
</c:forEach>
The value of varStatus represents the name of a scoped variable that you can use to obstain information about the status of the iteration performed by
action.
The following code
<c:forEach begin="0" end="${pageNumbers}" var="i" varStatus="status">
var: ${i} and status: ${status.count} <br/>
</c:forEach>
generates the following output:
var: 0 and status: 1
var: 1 and status: 2
var: 2 and status: 3
var: 3 and status: 4
<c:if test='$( param.cardType =="Visa"}'></c:if>
<c:if test='$( not empty param.cardType}'></c:if>
<c:if test='$( isRight}'></c:if>
<c:choose>
<c:when test='${isRight}'>
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
Add a comment
You are not allowed to comment on this entry as it has restricted commenting permissions.