2008/2/13, Tim Kannenberg <[EMAIL PROTECTED]>: > <c:forEach begin="1" end="5" var="current">
This way you create a nested scoped variable, so it is visible inside
the <c:forEach> element but *within the same page*.
You could add a <c:set> tag to export this variable into a
request-scoped attribute.
<c:set var="reqCurrent" value="${current}" scope="request" />
HTH
Antonio
