Hi frnd,
The soln
<c:forEach begin="1" end="10" step="1" var="dare">
<c
ut value="10-${dare}" default="out error"/>
</c:forEach>
won't work either. You must move '10' inside EL expression. so it shld be
<c:forEach begin="1" end="10" step="1" var="dare">
<c
ut value="${10-dare}" default="out error"/>
</c:forEach>
Make sure that u urself r perfect b4 challenging others.
Thanks
Pushkar S. Raste