Hi
I was trying to execute the code associated with
jsp aram given in HFSJ
Main.jsp
<html>
<body>
<jsp:include page="Header.jspf" >
<jsp
aram name="subTitle" value="some subtitle...." />
</jsp:include>
</body>
</html>
Header.jspf
<b> The parameter is ${param.subTitle} </b>
When I ran this in
tomcat.. I wasn't getting the value of subTitle.
Instead the output appeared like
"The parameter is ${param.subTitle}"
Is there anything else that needs to be configured ?