I have a simple jsp that I used to include statically to pages when I needed to see what variables were in all of the implicit objects (parameters, session etc). For example:
<table>
<c:forEach items='${pageScope}' var='page'>
<tr><th>${page.key}</th><td>${page.value}</td></tr>
</c:forEach>
</table>
Now I want to convert it to a tag file, but the problem is that the pageScope inside a tag file is a fresh clean pageScope, as demanded by the Spec. I want access to the original pageScope as well. Any one know if this scope is available via the EL?
Thanks,
Rick
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
