Given :
<%@ page isELIgnored="true" %>
what is the effect?
A. Noting, this page directive is not defined
B. The directive turns off thee valuation of EL 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 directive should not have any EL code evaluated by the JSP container
E.This page directive will only turn off EL evaluation if the DD declares a <el-ignored>true</el-ignored> element with a URL
pattern that includes this JSP.
I answered D and so does the book. But when I look at the errata available on O'Reilly website, it says the answer should be E and not D
My question is how worthy that errata is? Some of the items that I find in that errata are already fixed in the book and some not.
pls enlighten me.....
AUM