码迷,mamicode.com
首页 > 编程语言 > 详细

Java web ch03_4_include.jsp

时间:2017-10-11 11:05:03      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:doc   enc   char   page   www   png   jsp   分享   title   

<%@ 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

标签:doc   enc   char   page   www   png   jsp   分享   title   

原文地址:http://www.cnblogs.com/meng2/p/7648504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!