java web---include指令

ch03_4_include1:

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<html>
  <head>
    <title>被include包含的文件</title>
  </head>
  <body>
   <h1>Hello World!</h1>
  </body>
</html>

ch03_4_include2:

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<html>
  <head>
    <title>include指令实例</title>
  </head>
  
  <body>
    <center>
    现在的日期和时间是:<%=new Date()%>
    <hr>
    <%@include file="ch03_4_include1.jsp"%>
    </center>
  </body>
</html>

猜你喜欢

转载自blog.csdn.net/wanwu_fusu/article/details/83004421