On page 208 of the book, we have an example of of setting up init param for
JSP, and scriptlet code to get to it.
There is no EL implicit object for servlet/Jsp init params ( there is one for servletContext/applicatin init parameters. I know I can use the pageContext implite object to get to the servletConig object, eg.
${pageContext.servletConfig.servletName}
But I can't get to the initParameters

. Please advise.
Thanks!