On Tue, 21 May 2002, Claudio Cicali wrote:

> Hello,
> 
> simple and direct:
> 
> On the same jsp, this:
> 
>     <%= session.getParameter("section") %>
> 
> returns, say, "MAIN"
> 
> while this:
> 
>     <c:out value="${session.section}" />
> 
> returns nothing...

You really mean

  <c:out value="${sessionScope.section}" />

The other form ("session" alone) is out of date.

-- 
Shawn Bayern
"JSP Standard Tag Library"   http://www.jstlbook.com
(coming this summer from Manning Publications)


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

Reply via email to