Can I specify position when print using <c:forEach ?
Is it possible to check current position to skip some position
If I would like to print position 1,3,4,5, ....
is this possible ?
Code:
<c:forEach var="pArray" items="${pArray}">
<input type="hidden" name="pArray" value="<c:out value="${pArray}"/>" >
</c:forEach>
Is it possible to check current position to skip some position
If I would like to print position 1,3,4,5, ....
is this possible ?