1. 程式人生 > >Java web ch03_4_include.jsp

Java web ch03_4_include.jsp

nal meta w3c public -1 日期和時間 bsp include指令 port

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>被include包含的文件</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" import="java.util.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>include指令實例</title>
</head>
<body>
<center>
現在的日期和時間是: <%=new Date()%>
<hr>
<%@ include file="ch03_4_include1.jsp" %></center>
</body>
</html>

技術分享

技術分享

技術分享

Java web ch03_4_include.jsp