JSP学习笔记(八)-----include的运用

类别:Java 点击:0 评论:0 推荐:

1.         向JSP页面中插入指定的页面方法有两种:

JSP命令<%@ include%>

JSP动作<jsp:include />

 

2.         a.jsp代码如下:

<html>huanghui

<%@ include file="b.jsp"%>

<jsp:include page="b.jsp" flush="true"/>

</html>

 

3.         b.jsp代码如下:

<html>hello</html>

 

本文地址:http://com.8s8s.com/it/it15874.htm