I am trying to pass a parameter from one jsp file to another using
From Index.jsp
<jsp:include page="footer.jsp">
<jsp:param name="main" value="true"/>
</jsp:include>
And then Accessing param main in footer.jsp using
<h1>The value : ${param.main}</h1>
<c:choose>
<c:when test="${param.main=='true'}">
something
</c:when>
however, param.main still remains null in footer.jsp.
Our code uses HIPPO CMS. Is there a way I can send a parameter from one jsp to another in HIPPO CMS. I tried searching but i could not find anything relavant to HIPPO CMS.