el has been incorporated into JSP 2.0 which is what Tomcat 5 implements. So, you no longer need the <c:out> tag. Just do:

<p>1 + 2 + 3 = ${1+2+3}</p>

Check out Tomcat's default pages to see more cool things you can do with Tomcat 5 (JSP 2.0/Servlet2.4).
-Ben


From: "David Wall" <[EMAIL PROTECTED]>
Reply-To: "David Wall" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: EL not being evaluated?
Date: Thu, 5 Feb 2004 09:44:28 -0800

I've installed JDK 1.4.2_03, Tomcat 5.0.18 and Apache's JSTL 1.1 on RH Linux
9.


My XHTML JSP contains a simple construct:   <p>1 + 2 + 3 = <c:out
value="${1+2+3}"/></p>

But the expression is not being evaluated, yet the c:out tag is being
processed fine.  The output just looks like:

1 + 2 + 3 = ${1+2+3}

Is there a trick to getting the expressions configured to work with Tomcat
5?

Thanks,
David


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


_________________________________________________________________
Learn how to choose, serve, and enjoy wine at Wine @ MSN. http://wine.msn.com/



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



Reply via email to