Hi,
I am trying to send param values to included
jsp from main jsp using jsp:include and jsp
aram standard actions. Included jsp is named as header.jspf. But when I try to display param attribute in the included jspf, it is not evaluating EL and the expression is printed as it is.
Here is my initparam.jsp which is calling an included jsp.[/CODE][/CODE][code]
<html><body>Passing parameters to included file using jsp
aram
<jsp:include page="header.jspf">
<jsp
aram name="jspName" value="initparam"/>
</jsp:include>
</body>
</html> [/code]
Here is included jsp named as header.jspf
[code] <h1> Header:SCWCD </h1>
${param.jspName} [/code]
I am able to see the param attribute value in the result,if I specify el-ignored to be "false" in DD for url
pattern of type .jspf
[code] <jsp-config>
<jsp-property-group>
<url-pattern>*.jspf</url-pattern>
<el-ignored>false</el-ignored>
</jsp-property-group>
</jsp-config>
[/code]
My questions is since el-ignored is false by default, why is EL not getting evaluated . and why is it ignoring EL in the included fragment?
Should we specifically mention not to ignore EL in DD?
Thanks