That was helpful, Serge, thanks!
Now, while I got this working for simple variables, how would I access
nested or array variables?
If I have something like
<c:forEach var="myRow" ..> <c:forEach var="myCol" ..> <c:out value="${myRow[myCol]}" /> </c:forEach > </c:forEach >
Using "pageContext.findAttribute()" I can access myCol and myRow ... what about myRow[myCol] ?
There isn't a great way to do this except to do <c:set> then previous approach, e.g.,
<c:set var="foobar" value="${myRow[myCol]}" />
<%
Object foobar = pageContext.findAttribute("foobar");
%>-- Serge Knystautas President Lokitech >> software . strategy . design >> http://www.lokitech.com p. 301.656.5501 e. [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
