In this example we are going to use <jsp:include> action tag. This action tag has one attribute page which is used to include a file in a jsp page. While using <jsp:param> we are adding the file at run time.
The code of the program is given below:
<html> <head> <title>This page passes parameters</title> </head> <body> <!-- header from include--> <jsp:include page="AccessincludedParameter.jsp"> <jsp:param name="UserName" value="Roseindia.net"/> </jsp:include> Above text is from AccessincludedParameter.jsp. </body> </html> |
<!-- the included file -->
<h1><%=request.getParameter("UserName") %> </h1>
|
Output of the Program:

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.
Ask Questions? Discuss: Passing Parameter with
View All Comments
Post your Comment