Embedding ${} syntax in jsp pages

2004-07-23 Thread Ess Ci
Hello, I see some of the examples shipped with 5.0.25 tomcat contains ${} embedded jsp commands, as below: tr td\${1}/td td${1}/td /tr tr td\${1 + 2}/td td${1 + 2}/td /tr tr

Re: Embedding ${} syntax in jsp pages

2004-07-23 Thread Steve Cheng
Message - From: Ess Ci [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 23, 2004 2:17 PM Subject: Embedding ${} syntax in jsp pages Hello, I see some of the examples shipped with 5.0.25 tomcat contains ${} embedded jsp commands, as below: tr td\${1}/td

Re: Embedding ${} syntax in jsp pages

2004-07-23 Thread Thilo Krawietz
Hi Ess, in order to enable interpretation JSP 2.0 EL expressions, you need to switch your webapp to JSP 2.0. This is done in web.xml by replacing the starting web-app tag by this syntax: web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;