如题怎么做到啊?我从库里取出了两个字段一个name一个nameID 把nameID付给了checkbox的value !如何点击提交的时候被我点击的checkbox的值会传给下方的隐藏域?帮我改下!有用加分
代码如下:
<form action="MyJsp.jsp" method="get">
<table width="200" border="1">
<%Connection con=null;
Statement stat=null;
try{
Class.forName("org.gjt.mm.mysql.Driver");
String url="jdbc:mysql://localhost/testfornothing?user=root&password=123456";
con=DriverManager.getConnection(url);
stat=con.createStatement();
String sql="select * from TESTCHECKBOX";
ResultSet rs=stat.executeQuery(sql);
while(rs.next()){
%>
<tr>
<td><%=rs.getString("NAME") %></td>
<td>
<input type="checkbox" name="c1" value="<%=rs.getInt("NameID") %>" />
</td>
</tr>
<%} %>
</table>
<%}catch(Exception e){
e.printStackTrace();
} finally {
stat.close();
con.close();
} %>
<input type="submit" name="submit" value="submit">
<input type="hidden" name="c2" ">
</form>