how to delete multiple records using checkbox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • madhoriya22
    Contributor
    • Jul 2007
    • 251

    #1

    how to delete multiple records using checkbox

    I have solved the problem
  • apurba
    New Member
    • Aug 2006
    • 1

    #2
    Originally posted by madhoriya22
    I have solved the problem
    hi

    I have the same problem.please help me......
    Thanks in Advance...

    Apurba

    Comment

    • Nepomuk
      Recognized Expert Specialist
      • Aug 2007
      • 3111

      #3
      Originally posted by apurba
      hi

      I have the same problem.please help me......
      Thanks in Advance...

      Apurba
      Hi Apurba! Welcome to TSDN!

      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,
      Nepomuk

      Comment

      • madhoriya22
        Contributor
        • Jul 2007
        • 251

        #4
        Originally posted by apurba
        hi

        I have the same problem.please help me......
        Thanks in Advance...

        Apurba
        Hi,
        All u have to do is to put checkbox for each record in ur table. Then you can get selected checkbox values using ..
        Code:
         
        String str[] = request.getParameterValues("checkBoxName");
        By doing this you vil get all the selected checkbox values in a string array.
        Try it ..
        Last edited by madhoriya22; Sep 10 '07, 07:54 AM. Reason: To add my signature :)

        Comment

        Working...