Posted By:
Aditya_Sharma
Posted On:
Wednesday, March 10, 2004 10:31 PM
public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException { HttpSession ses = req.getSession(true); --code to print 5 columns of table -- while (r.next()) //r is resultset of database //Assume connection is established { out.println(r.getString(1)); . . out.println(r.getString(6)); out.println (" action= ") out.println (" out.println(" "); } // this helps to display say 4 books (depending on number /
More>>
public void doPost(HttpServletRequest
req,HttpServletResponse res) throws ServletException,IOException
{
HttpSession ses = req.getSession(true);
--code to print 5 columns of table --
while (r.next()) //r is resultset of database
//Assume connection is established
{
out.println(r.getString(1));
.
.
out.println(r.getString(6));
out.println ("
");
} // this helps to display say 4 books (depending on number
// of records stored in database) with 4 check boxes to
// select them
//My problem: Please help me to pass the value of these
checkboxes to a session object.
---------------------------------------------------------
Kindly help me to add putValue of checkboxes to a session
object on click of Submit button
<<Less