Hi,
I would like to get init JSP params using EL Expression. I can get the Context Init params in a JSP with EL but i can see how to get Init JSP params using EL.
I have this DD fragment:
<servlet>
<servlet-name>indexpage</servlet-name>
<jsp-file>/index.jsp</jsp-file>
<init-param>
<param-name>myname</param-name>
<param-value>myvalue</param-value>
</init-param>
</servlet>
How can i get this jsp params in a JSP using EL??, for example if all my JSPs are configured with scripting invalid ... How can i get the init JSP params??
Thanks in advance.