Hi all,
I am trtying to make a jsp application and have problem with <jsp:include,
How can I pass a Object to another page with
<jsp:include page="/page2.jsp">
<jsp:param name="messageItem" value="<%=message%>"/>
</jsp:include>
Here I have a Message class and I want to pass its object message to another page2(this will be included into main page)
How can do That?
Param not works here.