Java
本类阅读TOP10
作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站
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>
相关软件: