From: "Neil Erdwien" <[EMAIL PROTECTED]>
> The ability to use "${expr}" in the text of a JSP page is new to JSP
> 2.0. Does your container support JSP 2.0? Tomcat 5 does, Tomcat 4
doesn't.
And if you're not on JSP 2.0, then try:
<c:out value="${user.login}"/>
(Assuming the 'user' object has a 'getLogin' method.)
--
Wendy Smoak
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

