Adds parameters as name/value pairs to an HTTP request when you forward the request from one JSP page to another. You can use this action only with the jsp:include, jsp:forward, and jsp:plugin actions.

<jsp.param name="paramName">

Example, within a jsp:include tag:

<jsp:include page="path" flush="true">
    <jsp:param name="paramName" 
	value="paramValue" /> ... 
</jsp:include>