delete mulitple records with checkboxes

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default delete mulitple records with checkboxes

    i have a recordset with a looped region and checkboxes each checkbox has the
    individual record id assigned to it

    my questions is what SQL command would i need to delete the checked boxes
    when submitted

    would it be something like

    DELETE FROM table_name
    WHERE column_name IN (checkboxvalues)?


    ceaseanddesist Guest

  2. Similar Questions and Discussions

    1. Delete data from mulitple fields in one deletion
      I have an Acrobat 7 for Mac form setup with 40ish fields that I use daily and want to be able to select all the data I put in each of the fields...
    2. Delete mulitple records from list based on checkbox?
      Hi - using ASP/ACCESS/VBscript Need an good and not expesive extension for making a page where I can delete multiple records from a list based on...
    3. Data File, turn fields on mulitple lines into records on one li ne.. .
      Taylor Lewick wrote: open my $in, '<', 'file1' or die "Cannot open file1: $!"; open my $out, '>', 'file2' or die "Cannot open file2: $!"; while...
    4. Data File, turn fields on mulitple lines into records on one li ne.. .
      Taylor Lewick wrote: Is that what the ACTUAL line looks like? Use perl to do it: open my $in, '<', 'file1' or die "Cannot open file1:...
    5. Data File, turn fields on mulitple lines into records on one li ne.. .
      What is the "real" goal? Aka why are you shelling out to grep in the first place? As a side note you should be using full paths for grep, file1,...
  3. #2

    Default Re: delete mulitple records with checkboxes

    Try

    [url]http://www.drdev.net/article02.asp[/url]

    --
    Jules
    [url]http://www.charon.co.uk/charoncart[/url]
    Charon Cart 3
    Shopping Cart Extension for Dreamweaver MX/MX 2004


    Julian Roberts Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139