<%@include file="file url"%>
file 屬性用來指定被包含的檔案,使用 include 指令時,它必須存在。該屬性不支援任何表示式,也不允許通過如下的方式來傳遞引數:<%@include file = "welcome.jsp?name=yxq"%>
<%@include file = "welcome.jsp"%>
<%@page pageEncoding="UTF-8"%> <img src="images/banner.jpg">編寫一個名為 copyright.jsp 的檔案,用於放置網站的版權資訊。copyright.jsp 檔案的具體程式碼如下:
<%@page pageEncoding="UTF-8"%> <table width="780"height="102"border="0"cellpadding="0"cellspacing="0"background= "images/copyright.jpg"> <tr> <td></td> </tr> </table>建立一個名為 index.jsp 的檔案,在該頁面中包括 top.jsp 和 copyright.jsp 檔案,從而實現一個完整的頁面。index.jsp 檔案的具體程式碼如下:
<%@page language="java"contentType="text/html;charset=UTF-8"pageEncoding="UTF-8"%> <html> <head> <meta http-equiv="Content-Type"content="text/html;charset=UTF-8"> <title>使用檔案包含include指令</title> </head> <body style="margin:0px;"> <div align="center"> <%@include file="top.jsp"%> <table width="780"height="205"border="0"cellpadding="0"cellspacing="0"background= "images/center.jpg"> <tr> <td>&nbsp;</td> </tr> </table> <%@include file="copyright.jsp"%> </div> </body> </html>