includeactiontest2.jsp
来自「java2 primer plus一书源程序」· JSP 代码 · 共 15 行
JSP
15 行
<html>
<head>
<title>Include Action Test2</title>
<body>
<h2>Include Action Test2</h2>
This is before the included page.
<%
String pageNum;
pageNum = request.getParameter("pageNum");
%>
<jsp:include page='<%= "includes/IncludedPage" + pageNum +".jsp" %>' />
This is after the included page.
<br>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?