我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

无心过客



性别: 保密 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 629
威望: 0
浮云: 1186
在线等级:
注册时间: 2004-09-25
最后登陆: 2009-03-18

5come5帮你背单词 [ treatment /'tri:tmənt/ n. 处理,对待,款待,治疗 ]


[求助]JSP

要求:创建一个jsp应用,取数1到10作为输入,然后打印出一个简单的乘法表。例如输入5
则输出
5 times 1 is 5
  。
  。
  。
5 times 10 is 10
在解决方案中尽量用el和el表达式

我不知道循环和数组在el中怎么用,哪位蝈蝈知道帮我改改哈


[ 此贴被无心过客在2006-12-11 10:24重新编辑 ]
顶端 Posted: 2006-12-11 10:13 | [楼 主]
无心过客



性别: 保密 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 629
威望: 0
浮云: 1186
在线等级:
注册时间: 2004-09-25
最后登陆: 2009-03-18

5come5帮你背单词 [ stalk /sto:k/ n. 茎,干;v. 昂首阔步地步 ]


<html>
<head>
<title>EL Type Conversion Examples</title>
</head>
<body>
<form action="multiply.jsp" method="get">
<table>
<tr>
  <td colspan="2" align="center"><h3>Design a multiplication table</h3></td>
</tr>

<tr>
  <td>enter an integer:</td>
  <td>
    <input type="text" name="mul" value="enter a number"></input>
  </td>
  </tr>
  <tr>
  <td>
  <input type="submit" value="send"/>
</table>
</form>

</body>
</html>



index.jsp
顶端 Posted: 2006-12-11 10:14 | [1 楼]
无心过客



性别: 保密 状态: 该用户目前不在线
等级: 栋梁之材
发贴: 629
威望: 0
浮云: 1186
在线等级:
注册时间: 2004-09-25
最后登陆: 2009-03-18

5come5帮你背单词 [ scope /skəup/ n. 范围,视野,余地,机会 ]


<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<html>
<head>
<title>multiply</title>
</head>

<body>
<h1>multiplication for your input number:${param.mul}</h1>
<h3>${param.mul}times1 is ${1*param.mul}</h3>
<h3>${param.mul}times2 is ${2*param.mul}</h3>
<h3>${param.mul}times3 is ${3*param.mul}</h3>
<h3>${param.mul}times4 is ${4*param.mul}</h3>
<h3>${param.mul}times5 is ${5*param.mul}</h3>
<h3>${param.mul}times6 is ${6*param.mul}</h3>
<h3>${param.mul}times7 is ${7*param.mul}</h3>
<h3>${param.mul}times8 is ${8*param.mul}</h3>
<h3>${param.mul}times9 is ${9*param.mul}</h3>
<h3>${param.mul}times10 is ${10*param.mul}</h3>
</body>
</html>  



multiply.jsp
顶端 Posted: 2006-12-11 10:15 | [2 楼]
独飞の孤心



性别: 帅哥 状态: 该用户目前不在线
头衔: 孽缘!
等级: 荣誉会员
家族: 单身贵族
发贴: 4484
威望: 3
浮云: 496
在线等级:
注册时间: 2005-10-12
最后登陆: 2011-09-23

5come5帮你背单词 [ view /vju:/ n. 风景,景色,看法,见解,视野,眼界;把…看成是,认为,观察,检查 ]


这种语法问题最好找本书自己查下。。。。
顶端 Posted: 2006-12-11 10:27 | [3 楼]
春香



性别: 保密 状态: 该用户目前不在线
等级: 品行端正
发贴: 158
威望: 0
浮云: 1524
在线等级:
注册时间: 2006-04-06
最后登陆: 2007-06-27

5come5帮你背单词 [ melon /'melən/ n. 瓜,甜瓜 ]


看看这个标签(要有jstl.jar及其实现如:standard.jar)
<c:forEach></c:forEach>
的用法,也许就是你需要的。
顶端 Posted: 2006-12-11 11:05 | [4 楼]
我来我网·5come5 Forum » 程序员之家

Total 0.007409(s) query 5, Time now is:11-23 19:28, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号