Jsp中的<!@ include file="filename" %>可以实现你的要求,它只是将文件包含进来,其他什么也不做。
<jsp:include page="webpagename" />就不行了!

解决方案 »

  1.   

    应该是<%@include file="/include/import.jsp" %>
      

  2.   

    <%@ include file ="/jsp/sessions/carts.html" %>
      

  3.   

    <%@include file="CheckSession.jsp"%><jsp:include page="CopyRight.jsp"/>
      

  4.   

    <%@include 是静态包含
    简单的把代码包含进来<jsp:include  是动态包含
    将执行后的html代码包含进来还是有区别的
      

  5.   

    <%@ include file = "url" %>
      

  6.   

    好像<@ include file="url.jsp">不行
      

  7.   

    <%@include file="相对路径" %>