Jsp: include: the page contains tags



Example

<%@page contentType="text/html;charset=gb2312"%>//将top.jsp文件包含进来
  <jsp:include page="top.jsp"/>

Typical application

<body>
  <table>
    ……此处省略了其他标签的代码
    <tr>
      <td colspan="3">  //使用<jsp:include>标签将foot.jsp页面包含到当前页面
        <jsp:include page="foot.jsp"></jsp:include>
      </td>
    </tr>
  </table>
</body>
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
分享
二维码
< <上一篇
下一篇>>