繁体中文
设为首页
加入收藏
当前位置:JSP技术首页 >> 资料/其它 >> JSP学习笔记(八)-----include的运用

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

2005-02-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介:1. 向JSP页面中插入指定的页面方法有两种: JSP命令<%@ include%> JSP动作<JSP:include /> 2. a.JSP代码如下: <HTML>huanghui <%@ include file="b.JSP"%> <JSP:include page="b.JSP" flush="true"/>...
关键字:include 笔记 学习 JSP

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>

责任编辑:admin
相关文章