jsp:param action tag

The jsp:param action tag is used pass the parameters from JSP to other resource like jsp or servlet.

Syntax:

<jsp: param name="paramName" value="paramValue"/>

Example:

welcome.jsp

<html>
	<head>
		<title>param action example</title>
	</head>
	<body> 
	  <h3>Hello this is a param action example.</h3>
	  <jsp:forward page="home.jsp">
	     <jsp:param name="websiteName" value="826.a00.myftpupload.com"/>
	  </jsp:forward>
	</body>
</html>

home.jsp

<html>
  <head>
	<title>param action example</title>
  </head>
  <body>
    <h4>
     This content is of that resource on which request is forwarded.
    </h4>
    <%
	out.print("Website: " + request.getParameter("websiteName")); 
    %>
  </body>
</html>

web.xml

<web-app>
 
  <welcome-file-list>
          <welcome-file>welcome.jsp</welcome-file>
  </welcome-file-list>	
 
</web-app>

Output:

jsp example 29   Download this example.   Next Topic: jsp:useBean, jsp:setProperty and jsp:getProperty action tag. Previous Topic: jsp:include action tag with example.

 

Please follow and like us:
Content Protection by DMCA.com