JSP动作元素<jsp:include>和<jsp:param>的搭配使用
2021-01-21 19:14
标签:sum 元素 ppa -- 中间 get 显示效果 加载 动作 最近在学习项目时,遇到 当 测试代码jspparamtest.jsp如下: 要加载的sum.jsp文件代码如下: 最后, 标签:sum 元素 ppa -- 中间 get 显示效果 加载 动作 原文地址:https://www.cnblogs.com/hhhwj/p/13292073.html 1 @ page language="java" contentType="text/html; charset=gb2312"%>
2 html>
3 body>
4 p>加载文件显示效果:
5
6 jsp:include page="resource/sum.jsp">
7 jsp:param value="300" name="number"/>
8 jsp:include>
9 body>
10 html>
1 @ page language="java" contentType="text/html; charset=gb2312"%>
2 html>
3 body>
4
5 String str = request.getParameter("number");
6 int n = Integer.parseInt(str);
7 int sum=0;
8 for(int i=0;in;i++)
9 {
10 sum+=i;
11 }
12 %>
13 p>
14 从1到=n %>的累加和是:
15 br>
16 =sum %>
17 body>
18 html>
上一篇:PHP面向对象设计总结
下一篇:networkx AttributeError: 'DiGraph' object has no attribute 'edge'
文章标题:JSP动作元素<jsp:include>和<jsp:param>的搭配使用
文章链接:http://soscw.com/index.php/essay/45104.html