Hi Raanchers,
I am not able to run expression language in my
JSP.
The
Tomcat Version I am using is 5.0.28(I think tomcat 5 implements JSP2.0 which have EL)
My Jsp Page is
<html>
<body>
<table><tr><td>${1+2}</td></tr></table>
</body>
</html>
When I launch it the browser(MSIE)shows
${1+2}
I tried looking into Tomcat JSP-examples jsp2 folder for EL examples but
I have found
<servlet-mapping>
<servlet-name>org.apache.jsp.jsp2.el.basic_002darithmetic_jsp</servlet-name>
<url-pattern>
/jsp2/el/basic-arithmetic.jsp</url-pattern>
</servlet-mapping>
<
servlet>
<servlet-name>org.apache.jsp.jsp2.el.basic_002darithmetic_jsp</servlet-name>
<servlet-class>org.apache.jsp.jsp2.el.basic_002darithmetic_jsp</servlet-class>
</servlet>
in the \jakarta-tomcat-5.0.28\webapps\jsp-examples\WEB-INF
Can anybody tell me why is this done?
Will I have to enable EL using <el-ignored>false</el-ignored>?
Please let me know if I am missing something very basic.
Thanks in advance
Regards
Sangram
[ September 08, 2006: Message edited by: Sangram Singh ]