<html>
<head>
<title>This page passes parameters</title>
</head>
<body>
<!-- header from include-->
<jsp:include page="includeFileNeedingAParameter.jsp">
<jsp:param name="department" value="Electrical"/>
</jsp:include>
Above text is from includeFileNeedingAParameter.jsp.
</body>
</html>
//File : includeFileNeedingAParameter.jsp
<!-- the included file -->
<h1><%=request.getParameter("department") %> Department</h1>
|