I am preparing for SCWCD, and started reading and practicing Head first
Servlets &
JSP.
While working with EL expressions I am facing a problem.
Here is my web.xml
<web-app>
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<el-ignored>
false
</el-ignored>
</jsp-property-group>
</jsp-config>
</web-app>
in my JSP
Calling Start continue ... ${myList[1]} // is not evaluating EL expression untill I place page header like this "<%@ page isELIgnored="false" %>"
Please tell me how to work it from DD.
[ March 03, 2007: Message edited by: mamidi subrahmanyam ]