On 09:53 Thu 06 Nov     , Chaimungkalanot, Mark  wrote:
> Guys,
> 
> As much as I loathe to do it, I need to access the value within the temp
> variable created by c:forEach in a scriptlet.
> 
> Is this possible?

You could do that in the following way:
  <c:forEach items="${items}" var="t">
    <%
      Object t = pageContext.getAttribute("t");
      ///...
    %>
  </c:forEach>

best regards,
Konstantin

  

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

Reply via email to