jsp_ include动态包含

来源:互联网 发布:vr装修设计软件 编辑:程序博客网 时间:2024/06/05 22:29


include标签是动态包含

hel.jsp:  

<body>

                <h1>hel.jsp</h1>

                <jsp:include page="lo.jsp" />

  </body>

 

lo.jsp:

<%

out.println("<h1>lo.jsp</h1>");

%>