Example for displaying content from other jsp page.
index.jsp
<body>
<h1>Hello World!</h1>
<%=request.getRequestURI()%>
<%=request.getProtocol()%>
<%request.setAttribute("information","This is information passed from outer page");%>
<jsp:include page="success.jsp"/>
</body>
success.jsp
<body>
<h1>Hello World!</h1>
<%=request.getAttribute("information")%>
</body>
No comments:
Post a Comment