On 8/8/06, Le Nguyen-Thinh <[EMAIL PROTECTED]> wrote:

My JSP contains a piece of code which calls a tag from the taglib above:
<c:forEach begin="${0}" end="${MAX-1}" step="${1}" var="ind">

What in the world is that supposed  to be referring to?

java.lang.NumberFormatException: For input string: "${0}"

Try:  <c:forEach begin="0" end="${MAX-1}" step="1" var="ind">

(assuming MAX is actually set somewhere to an integer value...)

--
Hassan Schroeder ------------------------ [EMAIL PROTECTED]

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to