程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> JSP_include指令和(jsp:include)

JSP_include指令和(jsp:include)

編輯:關於JSP

包含三個文件:jsp_include.jsp, static.html, two.jsp

環境:tomcat7.0, myeclipse10

1.jsp_include.jsp

<%@ page contentType="text/html;charest=UTF-8" language="java" %>

  
  <%@ include file="static.html"%>
  goto two-->
this examples show include works

在版本7.0以上的tomcat中,連續使用引號會出現錯誤,解決方法如下:

Tomcat - 解決which must be escaped when used within the value錯誤

2.static.html



  
  


3.two.jsp

<%@ page contentType="text/html;charest=UTF-8" language="java" %>



this is a1=<%=request.getParameter("a1") %>
this is a2=<%=request.getParameter("a2") %>
<% out.println("hello from two.jsp"); %>

代碼我上傳到了我的資源。。在審核,有時間我會帖上鏈接方便大家下載閱讀。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved