Ask a Question related to ASP Database, Design and Development.
-
alexz #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 example A,C in all the selcted grade fields
instead of A in one field and C in another.
Response.Write "<INPUT type=""hidden"" name=""Recordid"" value='"& StrID &"'>"
My drop down
Response.Write("<SELECT NAME=""grade"">")
Response.Write "<option value=" & rs("grade") & ">" & rs("grade")&"</option>"
Response.Write "<option value=""A"">A</option>"
Response.Write "<option value=""B"">B</option>"
Response.Write "<option value=""C"">C</option>"
Response.Write "<option value=""D"">D</option>"
Response.Write("</SELECT>")
Response.Write ("</td>")
rs.MoveNext
Loop
rs.Close
------------------------------
strgrade = Request.Form("grade")
strID = Request.Form("Recordid")
SQLstr = "Update courseReg Set grade = '"& strgrade &"' Where Id =" & strID
set RS=MyConn.execute(sqlstr)
Thanks in advanced.
alexz Guest
-
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... -
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... -
ANN: Update Multiple Records in ASP
I've put together an article and demo on how to batch update records in a recordset: ... -
Manohar Kamath [MVP] #2
Re: update multiple records
I don't get this... are you trying to update multiple records with one
UPDATE, but have different values for each record? If that's the case, you
will need one UPDATE statement for each record. From the looks of it, you
probably have two "grade" fields on your page, and hence getting multiple
values.
--
Manohar Kamath
Editor, .netBooks
[url]www.dotnetbooks.com[/url]
"alexz" <alexz33@hotmail.com> wrote in message
news:43d72b53.0402060658.55c54f5f@posting.google.c om...fields> 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 example A,C in all the selcted grade&"'>"> instead of A in one field and C in another.
>
>
> Response.Write "<INPUT type=""hidden"" name=""Recordid"" value='"& StrIDrs("grade")&"</option>">
> My drop down
>
> Response.Write("<SELECT NAME=""grade"">")
> Response.Write "<option value=" & rs("grade") & ">" &strID> Response.Write "<option value=""A"">A</option>"
> Response.Write "<option value=""B"">B</option>"
> Response.Write "<option value=""C"">C</option>"
> Response.Write "<option value=""D"">D</option>"
> Response.Write("</SELECT>")
> Response.Write ("</td>")
> rs.MoveNext
> Loop
> rs.Close
> ------------------------------
>
> strgrade = Request.Form("grade")
> strID = Request.Form("Recordid")
> SQLstr = "Update courseReg Set grade = '"& strgrade &"' Where Id =" &> set RS=MyConn.execute(sqlstr)
>
> Thanks in advanced.
Manohar Kamath [MVP] Guest
-
dabendschein #3
Update Multiple Records
Sorry about this... i am a newcomer to dreamweaver and publishing programs in
general. I need to update multiple records in an Access db. I have figured out
how to create update forms with master/detail pages where I can update one
record at a time. What I need to be able to do is update a repeated region
table and have the right info in the right field. Right now if I try to do this
I end up with either an error or at best multiple records in one field (example
I try to input three "unit prices" of 1$, 2$, and 3$ in three distinct records
and they end up in the first record's "unit price" field with a value of
"1,2,3")
Any help is appreciated, thank you
dabendschein Guest
-
Paul Whitham TMM #4
Re: Update Multiple Records
There are some tutorials on [url]www.charon.co.uk[/url] that explain how to handle
multiple updates
--
Regards
Paul Whitham
Macromedia Certified Professional for Dreamweaver MX2004
Valleybiz Internet Design
[url]www.valleybiz.net[/url]
Team Macromedia Volunteer for Ultradev/Dreamweaver MX
[url]www.macromedia.com/support/forums/team_macromedia[/url]
"dabendschein" <webforumsuser@macromedia.com> wrote in message
news:d6l52j$56m$1@forums.macromedia.com...in> Sorry about this... i am a newcomer to dreamweaver and publishing programsout> general. I need to update multiple records in an Access db. I have figuredthis> how to create update forms with master/detail pages where I can update one
> record at a time. What I need to be able to do is update a repeated region
> table and have the right info in the right field. Right now if I try to do(example> I end up with either an error or at best multiple records in one fieldrecords> I try to input three "unit prices" of 1$, 2$, and 3$ in three distinct> and they end up in the first record's "unit price" field with a value of
> "1,2,3")
>
> Any help is appreciated, thank you
>
>
Paul Whitham TMM Guest



Reply With Quote

