Additional Header Information:
Received: from www.houseoffusion.com ([207.31.122.140]) by inside.pgi.com (Lotus
SMTP MTA v4.6.6  (890.1 7-16-1999)) with SMTP id 85256A03.005E0175; Fri, 2 Mar
2001 12:06:47 -0500
Received: from houseoffusion.com ([207.31.122.140])
          by www.houseoffusion.com (Post.Office MTA v3.5.3
release 223
          ID# 0-54969U100L100S0V35) with ESMTP id com
          for <[EMAIL PROTECTED]>;
          Fri, 2 Mar 2001 12:01:24 -0500
Content-type: text/plain
Content-type: text/plain
Date: Fri, 02 Mar 2001 11:49:30 -0500
From: Scott Stirling <[EMAIL PROTECTED]>
Message-id:
<[EMAIL PROTECTED]>

Subject: RE: Jrun Question
Reply-To: [EMAIL PROTECTED]
To: JRun-Talk <[EMAIL PROTECTED]>


---------------------------------




Hi,
I have a page with recordset in the table, I have checkbox on each record, when
users check the checkbox, how can I get the value of those checkbox has been
checked by using JSP?
On the next page, how can i get the value list of checkid?

Thank you for the help


  <form action="/dbaccess2.jsp" method="post" name="dbedit">
  <input type="submit" name="Add" value="Add">
  <input type="button" name="Delete" value="Delete"
  onClick="db()">
  <input type="button" name="Edit" value="Edit" onClick="db()">
  <table border="1">
  <tr><td><input type="checkbox" name="allbox"
  onclick="checkall()"></td>
   <td><a href="/dbaccess2.jsp">ID</a></td>

   <td>Emp_ID</td>

   <td>FirstName</td>

   <td>LastName</td>

   <td>EMail</td>

   <td>Phone</td>

   <td>Department</td>

  </tr>

  <tr>
   <td><input type="checkbox" name="checkid"></td>
   <td>1</td>
   <td><a href="dbaccess2.jsp?ID=1">1</a></td>
   <td>Carolynn</td>
   <td>Peterson</td>
   <td>CPETERSON</td>
   <td>(612) 832-7654</td>
   <td>Sales</td>
  </tr>


  <tr>
   <td><input type="checkbox" name="checkid"></td>
   <td>2</td>
   <td><a href="dbaccess2.jsp?ID=2">2</a></td>
   <td>Dave</td>
   <td>Heartsdale</td>
   <td>FHEARTSDALE</td>
   <td>(612) 832-7201</td>
   <td>Accounting</td>
  </tr>

</table>




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to