Hi All,
I have a doubt regards the answer of Q.6 page 336 HFSJ. Question says:
Given:
<%@ page isELIgnored="true" %>
What is the effect? (Choose all that apply.)
A. Nothing, this page directive is NOT defined.
B. The directive turns off the evaluation of Expression Language code by the
JSP container in all of the web application's JSPs.
C The JSP containing this directive should be treated by the JSP container as a well formed XML file.
D. The JSP containing this directice should NOT have any Expression Language code evaluated by the JSP container.
E. This page directive will only turn off EL evaluation if the DD declares a <el-ignored>true</elignored> element with a URL
pattern that includes this Jsp.
Ans is E.
However my understanding is the directvie will also turn off EL evaluation if the DD does not declare a <el-ignored>true</elignored> element with a URL pattern that includes this Jsp. Then why it says 'only' ?
Please correct me if I m wrong.