<!--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> <!--File jsp005a.jsp 02/13/00 Illustrates the Include Directive See jsp005.jsp --> <html> <body> Sun Feb 13 11:49:14 CST 2000 </body> </html> <BR> Include an HTML file here:<BR> <!--File jsp005a.htm 02/13/00 Illustrates the Include Directive See jsp005.jsp --> <html> <body> <font color="#FF0000"> An included HTML file </font> </body> </html> </body> </html> Figure 5 |