In this Example we will learn how to forward the client request or content on another web page. That requested content may be like HTML page, JSP or Servlet etc. The Main criteria of this example is to show how the content forward on another web page.
For this we also use two JSP forms in first we will use to enter the content which will have to forward on another web page as required in first form we use to code for design the web page. More we use HTML coding for that kind of designing criteria. We use attribute like forward page or param name for content referring. In the second page we create main functionality coding from that the output will be displayed on the web browser. The first form will use the redirection of the second one so that will execute both on the web browser as output. Some required JSTL tags or the java functions also use for this form…Lets Take a Look on The programmes…
<html>
<head>
<title><JSP_forward></title>
</head>
<body>
<jsp:forward page=”next.jsp”>
<jsp:param name= “U_Name” value=”Yaduvanshi Ash”/>
</jsp:forward>
</body>
</html>
Next.jsp
<html>
<head>
<title><Forwarded_Action Example in JSP></title>
</head>
<body>
<%
String name= request.getParameter(“U_Name”);
%>
<%
if(name != null)
{
%>
<b><br><br><h2 align=”center”>
<%=name%></h2></b></br>
<%}
%>
</body>
</html>