Update multiple records using checkboxes

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Update multiple records using checkboxes

    Searched the NG but no luck.

    Im displaying records from an Access2000 db in a table. The table is within
    a form and each record(row) has a checkbox next to it.

    I need to create an update statement that will update each record that has
    its checkbox checked.

    How can I do this?

    Thanks!



    Targa Guest

  2. Similar Questions and Discussions

    1. update multiple records
      I'm trying to to update multiple records with a drop down. My update statment updates all selected records with all selected choices. I get for...
    2. Deleting Multiple Records using Checkboxes
      Hi I wonder if anyone could help, I am trying to create a multiple delete page using checkbox's and it just will not work, I keep getting the...
    3. update multiple records in multiple tables from one form
      hello I have been trying to run multiple update queries based on the data entered by user. Brief background: I am fetching data from various...
    4. ANN: Update Multiple Records in ASP
      I've put together an article and demo on how to batch update records in a recordset: ...
    5. Deleting Multiple Records selected by checkboxes
      I have tried in vain after using 2 books - Prof ASP 3.0 and the compplete Reference for DWMX and about 8 different tutorial sites on the web that...
  3. #2

    Default Re: Update multiple records using checkboxes

    Think Im on the right track but now getting error:
    Microsoft OLE DB Provider for ODBC Drivers error '80040e10'

    [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1.

    Here's my code:
    strCallback= request.QueryString("Callback")
    response.write strCallback
    sql = "UPDATE Schedule SET Callback = 'Yes' WHERE ID IN (strCallback)"

    Any ideas?

    Thanks!


    >
    > Im displaying records from an Access2000 db in a table. The table is
    within
    > a form and each record(row) has a checkbox next to it.
    >
    > I need to create an update statement that will update each record that has
    > its checkbox checked.
    >
    > How can I do this?
    >
    > Thanks!
    >
    >
    >

    Targa Guest

  4. #3

    Default Re: Update multiple records using checkboxes

    sql = "UPDATE Schedule SET Callback = 'Yes' WHERE ID IN (" & strCallback &
    ")"

    Bob Lehmann

    "Targa" <targa1SPAMSUCKS@alltel.net> wrote in message
    news:#QrhbrqPEHA.3708@TK2MSFTNGP10.phx.gbl...
    > Think Im on the right track but now getting error:
    > Microsoft OLE DB Provider for ODBC Drivers error '80040e10'
    >
    > [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1.
    >
    > Here's my code:
    > strCallback= request.QueryString("Callback")
    > response.write strCallback
    > sql = "UPDATE Schedule SET Callback = 'Yes' WHERE ID IN (strCallback)"
    >
    > Any ideas?
    >
    > Thanks!
    >
    >
    >
    > >
    > > Im displaying records from an Access2000 db in a table. The table is
    > within
    > > a form and each record(row) has a checkbox next to it.
    > >
    > > I need to create an update statement that will update each record that
    has
    > > its checkbox checked.
    > >
    > > How can I do this?
    > >
    > > Thanks!
    > >
    > >
    > >
    >
    >

    Bob Lehmann Guest

  5. #4

    Default Re: Update multiple records using checkboxes

    Excellent - Thanks Bob!


    "Bob Lehmann" <none> wrote in message
    news:O8fpJwqPEHA.2996@TK2MSFTNGP12.phx.gbl...
    > sql = "UPDATE Schedule SET Callback = 'Yes' WHERE ID IN (" & strCallback &
    > ")"
    >
    > Bob Lehmann
    >
    > "Targa" <targa1SPAMSUCKS@alltel.net> wrote in message
    > news:#QrhbrqPEHA.3708@TK2MSFTNGP10.phx.gbl...
    > > Think Im on the right track but now getting error:
    > > Microsoft OLE DB Provider for ODBC Drivers error '80040e10'
    > >
    > > [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected
    1.
    > >
    > > Here's my code:
    > > strCallback= request.QueryString("Callback")
    > > response.write strCallback
    > > sql = "UPDATE Schedule SET Callback = 'Yes' WHERE ID IN (strCallback)"
    > >
    > > Any ideas?
    > >
    > > Thanks!
    > >
    > >
    > >
    > > >
    > > > Im displaying records from an Access2000 db in a table. The table is
    > > within
    > > > a form and each record(row) has a checkbox next to it.
    > > >
    > > > I need to create an update statement that will update each record that
    > has
    > > > its checkbox checked.
    > > >
    > > > How can I do this?
    > > >
    > > > Thanks!
    > > >
    > > >
    > > >
    > >
    > >
    >
    >

    Targa 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