做了一个这样的功能 就是想单独修改一行的数据 点击修改后跳转到新界面进行修改
但是不知道怎么样才能对这一行的数据进行传值 希望高手指点一下 新人什么都不会TAT
这是部分代码
<form action="DormGetIF" method="post" >
<div style="text-align:center;">
<table border="3" width="30%" align="center">
<tr>
<th>学号</th>
<th>姓名</th>
<th>班级</th>
<th>宿舍号</th>
<th>电话</th>
<th>操作</th>
</tr>
<c:forEach var="row" items="${result.rows}">
<tr >
<td><c:out value="${row.studentNo}"/></td>
<td><c:out value="${row.studentName}"/></td>
<td><c:out value="${row.className}"/></td>
<td><c:out value="${row.dormNo}"/></td>
<td><c:out value="${row.phone}"/></td>
<td>
<input type="submit" value="修改" name="submit" onclick="window.location.href='dormUpdate.jsp'"/>
<input type="submit" value="删除" name="submit" />
</td>
</tr>
</c:forEach>
</table>
</div>
</form>
pardon110