码迷,mamicode.com
首页 > Web开发 > 详细

Jsp动态生成表格

时间:2016-11-13 16:51:37      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:get   val   ble   表格   input   table   value   exce   ext   

输入行列:

<body>

<form action="Train2ResultJsp.jsp">
row:<input type="text" name="row"><br>
column:<input type="text" name="column"><br>
<input type="submit" value="submit">&nbsp;&nbsp;
<input type="reset" value="reset">
</form>
</body>

生成表格:

<body>
<%
int row=0;
int col=0;
try{
row=Integer.parseInt(request.getParameter("row"));
col=Integer.parseInt(request.getParameter("column"));
}catch(Exception ex){
out.println("please input integer!");
return;
}
int val=1;
%>
<table border="1">

<%for(int i=0;i<row;i++){ %>
<tr>
<%for(int j=0;j<col;j++){%>

<td>
<%=val++ %>
</td>

<%} %>
</tr>
<%} %>

</table>
</body>

Jsp动态生成表格

标签:get   val   ble   表格   input   table   value   exce   ext   

原文地址:http://www.cnblogs.com/qcxdoit/p/6058748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!