0
点赞
收藏
分享

微信扫一扫

jsp代码实例第339课


code339.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%-- jsp include --%>
<h4>包含静态文件</h4>
<jsp:include page="code340.html"></jsp:include>
<hr>
<h4>包含动态文件</h4>
<jsp:include page="code341.jsp"></jsp:include>
</body>
</html>


举报

相关推荐

jsp代码实例第372课

jsp代码实例第371课

jsp代码实例第300课

jsp代码实例第345课

jsp代码实例第343课

jsp代码实例第299课

0 条评论