您的位置:首页 > 其它

使用文件包含指令include

2013-04-24 21:35 337 查看
index.jsp

<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>使用文件包含include指令</title>
</head>
<body style="margin:0px;">
<%@ include file="top.jsp"%>
<table width="781" height="279" border="0" cellpadding="0" cellspacing="0" background="images/center.JPG">
<tr>
<td> </td>
</tr>
</table>
<%@ include file="copyright.jsp"%>
</body>
</html>

copyright.jsp

<%@ page pageEncoding="GB18030"%>
<%
String copyright=" All Copyright © 2009 吉林省明日科技有限公司";
%>
<table width="778" height="61" border="0" cellpadding="0" cellspacing="0" background="images/copyright.JPG">
<tr>
<td> <%= copyright %></td>
</tr>
</table>

top.jsp

<%@ page pageEncoding="GB18030"%>
<img src="images/banner.JPG">
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: