<!--File jsp005.jsp
02/13/00
Illustrates the JSP Include Directive.

Access http://localhost:8080/jsp005.jsp to run 
this JSP file in the Sun jswdk-1.0.1 reference 
implementation of jsp. 
-->

<html>
  <body>

    The date and time produced by an 
    include file:<BR>
    <%@ include file="jsp005a.jsp" %>
    <BR>
    Include an HTML file here:<BR>
    <%@ include file="jsp005a.htm" %>

  </body>
</html>


Figure 1