I was able to duplicate your problem. The solution:

change <c:out value="${header}" />

to <c:out value="${pageScope.header}" />

- Jim

At 08:47 PM 3/24/2003 -0500, you wrote:
The following jsp:
<c:forEach items="${list.headers}" var="header">
        <th><c:out value="${header}" /></th>
</c:forEach>

Where ${list} is a Bean with a getHeaders() that returns a Collection which, in this case, is an ArrayList of Strings.

The ${list} object is used elsewhere and works perfectly so I know it is being properly set.

The above outputs:

[EMAIL PROTECTED] [EMAIL PROTECTED]

(There suppose to be two headers.)

Any ideas?

Thanks,

A.

--
Adam Sherman
Tritus CG Inc.
http://www.tritus.ca/
+1 (613) 797-6819

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


______________________________
James Watkin
ACIS Software Development
The Anderson School at UCLA
[EMAIL PROTECTED]
Voice: 1-310-825-5030
Fax: 1-310-825-4835
______________________________



--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to