Hello,
simple and direct:
On the same jsp, this:
<%= session.getParameter("section") %>
returns, say, "MAIN"
while this:
<c:out value="${session.section}" />
returns nothing...
So, I have to do:
<c:set var="section">
<%= session.getAttribute("section") %>
</c:set>
But this... well... sucks :)
How can I access session scoped variables from within a JSTL tag
with the EL syntax ?
I've read a tutorial, looked into some examples, but I continue to
get nothing...
Thank you
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>