首页 > 代码库 > JSP的动态导入

JSP的动态导入

技术分享

<body>
<!--
动态引入


他们引入的相互独立的代码段 所以可以运行 代码段之间存在重复的变量



-->

this is a test dy include 01
<jsp:include page="testdyinclude02.jsp?name=lisi">
<jsp:param value="http://www.mamicode.com/insert" name="cmd"/>
</jsp:include>
</body>

 

testdyinclude02.jsp:

<body>
this is a test dy include 02<br>
<%=request.getParameter("name") %>
<%=request.getParameter("cmd") %>
</body>+

JSP的动态导入