
Suppose we want to pass data to one page to another page with same request on the session how do we do?

Hi
the jsp contain
ex:first.jsp
<jsp:forward page="two.jsp" >
<jsp:param name="name" value="asmit" />
<jsp:param name="site" value="roseindia" />
</jsp:forward>
two.jsp
<%@ page isELIgnored="false" %>
Name: ${param.name} <br>
Site: ${param.site} <br>
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.