I have solved the problem
how to delete multiple records using checkbox
Collapse
X
-
Tags: None
-
Hi Apurba! Welcome to TSDN!Originally posted by apurbahi
I have the same problem.please help me......
Thanks in Advance...
Apurba
Please describe exactly what the problem is and what code you've written so far. (And please use CODE Tags to do so - open with [CODE] or, as it's probably Java, [CODE=java] and closing with [/ CODE] (without the space).) Then I'm sure, you'll find help here.
Greetings,
NepomukComment
-
Hi,Originally posted by apurbahi
I have the same problem.please help me......
Thanks in Advance...
Apurba
All u have to do is to put checkbox for each record in ur table. Then you can get selected checkbox values using ..
By doing this you vil get all the selected checkbox values in a string array.Code:String str[] = request.getParameterValues("checkBoxName");
Try it ..Comment
Comment