Using Includes : Include « JSP « Java






Using Includes

<html>
<head>
<title>Using Includes</title>
</head>

<body>
<!-- header page inserted here -->
<jsp:include page="tableheader.html" flush="true"/>

<!-- main content inserted here-->
<jsp:include page="maincontent.jsp" flush="true"/>

<!-- insert the footer here -->
<jsp:include page="tablefooter.html" flush="true"/>
</body>
</html>


           
       








Related examples in the same category

1.Jsp page includes another Jsp page
2.Jsp Include Static HTML
3.Using Include And Pass Value
4.JSP Include
5.Include another file
6.Passing parameters during including
7.Forward a request
8.JSP standard action: include