Mega Code Archive

 
Categories / Java / JSP
 

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>