JSP: Passer des paramètre pendant l’inclusion d’un fichier extern

Author:
<html>
<head>
<title>This page passes parameters</title>
</head>
<body>
<!-- header from include-->
<jsp:includepage="includeFileNeedingAParameter.jsp">
  <jsp:paramname="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>
 
 
 
           
       

Cet article JSP: Passer des paramètre pendant l’inclusion d’un fichier extern est apparu en premier sur .