Hi,
I've a context param in my web.xml which i generally refer in all my jspx as below
web.xml
---
<context-param>
<param-name>myAppName</param-name>
<param-value>My Demo Application</param-value>
</context-param>
---
MyPage.jspx
---
<h3>Welcome to #{initParam.myAppName}</h3>
---
With the inroduction of the jspf framents in my application,if i have the same hearder in a jspf page
and when i include the jspf in my jspx using a jsp:include the EL is not getting evaluated it only show "Welcome to" and no app name.
Can someone let me know how to deal this?
<jsp:include page="/WEB-INF/jspf/myheader.jspf" />
Thanks,
Bhasker
P.S. I have also used <c:import url="/WEB-INF/jspf/myheader.jspf">but there was no change.
I cannot use <%@ include file="/WEB-INF/jspf/myheader.jspf"%> since it only adds static content.