Ask a Question related to ASP, Design and Development.
-
Olivia Towery #1
Update Multiple Records with One submit
SQL 6.5 Database
I have a list of registrants and I want to use a check box after each record
to show those who attend and then post all with one submit button.
Any help is appreciated.
--
Olivia Towery
Tower Internet Management
Olivia Towery Guest
-
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... -
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... -
How Do I update Multiple Records with One Submit??
Does anyone have a SOLID example of how this works? I've been struggling with this concept all day and am not understanding why it won't work. I... -
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... -
ANN: Update Multiple Records in ASP
I've put together an article and demo on how to batch update records in a recordset: ... -
Tom B #2
Re: Update Multiple Records with One submit
You can loop through your results, and send an update for each one. Do you
need to update those who don't attend?
I'll assume you don't have to update those who don't.
So on your form you'd have.....
Joe Blow <input type=checkbox name=ATTENDED value=1>
Fred Smith <input type=checkbox name=ATTENDED value=8>
Jen Jones <input type=checkbox name=ATTENDED value=3>
Gerald Springer<input type=checkbox name=ATTENDED value=99>
(Note that the value is the registrants ID from the database)
When the page is submitted the value of Request.Form("ATTENDED") will be a
comma delimited string of the selected values, so assuming just Joe, Jen and
Gerald are checked then it would equal "1,8,99" So, split it into an array
and update the database
Dim arrRegistrants
Dim iLoop
Dim sSQL
arrRegistrants=Split(Request.Form("ATTENDED"),",")
for iLoop=0 to Ubound(arrRegistrants)
sSQL="UPDATE tblWhatever Set Attended=1 WHERE RegistrantID=" &
arrRegistrants(iLoop)
CN.Execute sSQL 'Assuming CN is a valid and open connection object
next
You could also send a single sql statement along the lines of
sSQL="UPDATE tblWhatever SET Attended=1 WHERE RegistrantID IN (" &
Request.Form("ATTENDED") & ")"
which would look like this
UPDATE tblWhatever SET Attended=1 WHERE RegistrantID IN (1,8,99)
I think that's right, check BOL.
"Olivia Towery" <program@timwebs.com> wrote in message
news:us07LulYDHA.2464@TK2MSFTNGP09.phx.gbl...record> SQL 6.5 Database
>
> I have a list of registrants and I want to use a check box after each> to show those who attend and then post all with one submit button.
>
> Any help is appreciated.
>
> --
> Olivia Towery
> Tower Internet Management
>
>
Tom B Guest
-
Olivia Towery #3
Re: Update Multiple Records with One submit
Thanks Tom. But what if I do want to be able to uncheck a box and have the
db updated? Can this be done?
"Tom B" <shuckle@hotmail.com> wrote in message
news:OByel8lYDHA.1620@TK2MSFTNGP12.phx.gbl...you> You can loop through your results, and send an update for each one. Doand> need to update those who don't attend?
>
> I'll assume you don't have to update those who don't.
>
> So on your form you'd have.....
>
> Joe Blow <input type=checkbox name=ATTENDED value=1>
> Fred Smith <input type=checkbox name=ATTENDED value=8>
> Jen Jones <input type=checkbox name=ATTENDED value=3>
> Gerald Springer<input type=checkbox name=ATTENDED value=99>
>
> (Note that the value is the registrants ID from the database)
>
> When the page is submitted the value of Request.Form("ATTENDED") will be a
> comma delimited string of the selected values, so assuming just Joe, Jen> Gerald are checked then it would equal "1,8,99" So, split it into an array
> and update the database
>
>
> Dim arrRegistrants
> Dim iLoop
> Dim sSQL
> arrRegistrants=Split(Request.Form("ATTENDED"),",")
>
> for iLoop=0 to Ubound(arrRegistrants)
> sSQL="UPDATE tblWhatever Set Attended=1 WHERE RegistrantID=" &
> arrRegistrants(iLoop)
> CN.Execute sSQL 'Assuming CN is a valid and open connection object
> next
>
>
> You could also send a single sql statement along the lines of
>
> sSQL="UPDATE tblWhatever SET Attended=1 WHERE RegistrantID IN (" &
> Request.Form("ATTENDED") & ")"
>
> which would look like this
> UPDATE tblWhatever SET Attended=1 WHERE RegistrantID IN (1,8,99)
>
> I think that's right, check BOL.
>
>
>
>
> "Olivia Towery" <program@timwebs.com> wrote in message
> news:us07LulYDHA.2464@TK2MSFTNGP09.phx.gbl...> record> > SQL 6.5 Database
> >
> > I have a list of registrants and I want to use a check box after each>> > to show those who attend and then post all with one submit button.
> >
> > Any help is appreciated.
> >
> > --
> > Olivia Towery
> > Tower Internet Management
> >
> >
>
Olivia Towery Guest



Reply With Quote

