JSP(include指令)页面

<%@ page language= "java" contentType="text/html;charset=UTF-8" %>
<html>
    <head>
        <meta charset="utf-8">
        <title>包含页面</title>
    </head>
    <body>
        <%@ include file = "Head.jsp" %>
        <%@ include file = "Body.txt" %>
        <%@ include file = "Footer.jsp" %>
    </body>
</html>

Head.jsp——————————————————————————————————————

<%@ page language= "java" contentType="text/html;charset=UTF-8" %>
<table height=20 width=100% bgcolor=99ccff>

<tr>
    <td align ="center">页面头部分区</td>
    </tr>

</table>

Body.txt——————————————————————————————————————————

<%@ page language= "java" contentType="text/html;charset=UTF-8" %>
填充页面<br>
填充页面<br>
填充页面<br>
填充页面<br>
填充页面<br>
填充页面<br>
填充页面<br>
填充页面<br>
填充页面<br>
填充页面<br>
<table height=20 width=100% bgcolor=43645f>

<tr>
    <td align ="center">页面内容分区</td>
    </tr>

</table>

Footer.jsp——————————————————————————————————————————

<%@ page language= "java" contentType="text/html;charset=UTF-8" %>
<br>
页尾部分
</br>
<table height=50 width=100% bgcolor=9463bf>
    <tr>
    <td align ="center">页面尾部分区 <hr>&copy;朗沃培训<%=new java.util.Date() %></td>
    </tr>
</table>

上一篇:android手机出现sqlite3 not found的解决方法


下一篇:C++ template —— 深入模板基础(二)