Include Page in another Directory : Resource Bundle « JSP « Java Tutorial






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()  %>
  Download:  JSPIncludePageInDirectory.zip( 938 k)







23.50.Resource Bundle
23.50.1.Load Resource Bundle
23.50.2.Include Page in another Directory