Mega Code Archive

 
Categories / Java Tutorial / JSP
 

Include Page in another Directory

index.jsp <html>   <body>     Let's include some content: <i><%@include file='included.jsp' %></i>   <P>     <%@include file='includeFiles/banner.html' %>   </body> </html> included.jsp The date is now <%= new java.util.Date()  %>