473,387 Members | 1,569 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Help with Updating Multiple Records via Looping

This is the first page......

<select size="1" name="Q1_<%=i%>" onChange="calc(<%=i%>)">
<option selected value="<% =rsScores("Q1")
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
<%
rsScores.movenext
loop
%>
<input type="hidden" name="x" value="<%=i%>">

This is the page that it posts to......
Dim strID, QQ1
Set Conn5S = Server.CreateObject("ADODB.Connection")
Conn5S.Open "Provider=sqloledb;Data
Source=ebs-sqlc1-vs3.edn.runi.com\SSS;UID=casuser;PWD=hppccas;DATAB ASE=skills"
count = Request.Form("x") - 1
for i = 0 to (count)
strID = Request.form("Emp & " i " &"'")
QQ1= Request.form("Q1 & " i " &"'")
sSQL = "UPDATE ECuryear SET Q1= '" & QQ1 & "' where (empid ='" & strID
& "')"
Conn5S.Execute(sSQL)
NEXT

When I execute the web page with a response.write on the sequel
statement, this is what it returns. Does anyone see what I am doing
wrong?

UPDATE ECuryear SET Q1= '' where (empid ='')

Dec 27 '06 #1
10 1889
jb******@midsouth.rr.com wrote:
This is the first page......

<select size="1" name="Q1_<%=i%>" onChange="calc(<%=i%>)">
<option selected value="<% =rsScores("Q1")
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
<%
rsScores.movenext
loop
%>
<input type="hidden" name="x" value="<%=i%>">
This is the page that it posts to......
Dim strID, QQ1
Set Conn5S = Server.CreateObject("ADODB.Connection")
Conn5S.Open "Provider=sqloledb;Data
Source=ebs-sqlc1-vs3.edn.runi.com\SSS;UID=casuser;PWD=hppccas;DATAB ASE=skil*ls"

count = Request.Form("x") - 1
for i = 0 to (count)
strID = Request.form("Emp & " i " &"'")
QQ1= Request.form("Q1 & " i " &"'")
sSQL = "UPDATE ECuryear SET Q1= '" & QQ1 & "' where (empid ='" & strID
& "')"
Conn5S.Execute(sSQL)
NEXT
When I execute the web page with a response.write on the sequel
statement, this is what it returns. Does anyone see what I am doing
wrong?
UPDATE ECuryear SET Q1= '' where (empid ='')

The only way to find out will be to look at the result of posting your form
a page containing to this:

<%
Dim strID, QQ1
count = Request.Form("x") - 1
Response.Write "count contains '" & count & "'<BR>"
for i = 0 to (count)
Response.Write "i contains '" & i & "'<BR>"
strID = Request.form("Emp & " i " &"'")
Response.Write "strID contains '" & strID & "'<BR>"
QQ1= Request.form("Q1 & " i " &"'")
Response.Write "QQ1 contains '" & QQ1 & "'<BR>"
sSQL = "UPDATE ECuryear SET Q1= '" & QQ1 & "' where (empid ='" & strID
& "')"
Response.Write "sSQL contains '" & sSQL & "'<BR>"
NEXT
%>
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Dec 27 '06 #2
I'm guessing that what you are trying to do is to cat your counter with the
form element value. The code you supplied is mess, so it's hard to tell.

But, anyhoooo.......

strID = Request.form("Emp" & i )
QQ1= Request.form("Q1" & i )

Also, I don't see that you have an element named "Emp"

Bob Lehmann

"pmarisole" <jb******@midsouth.rr.comwrote in message
news:11*********************@42g2000cwt.googlegrou ps.com...
This is the first page......

<select size="1" name="Q1_<%=i%>" onChange="calc(<%=i%>)">
<option selected value="<% =rsScores("Q1")
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
<%
rsScores.movenext
loop
%>
<input type="hidden" name="x" value="<%=i%>">

This is the page that it posts to......
Dim strID, QQ1
Set Conn5S = Server.CreateObject("ADODB.Connection")
Conn5S.Open "Provider=sqloledb;Data
Source=ebs-sqlc1-vs3.edn.runi.com\SSS;UID=casuser;PWD=hppccas;DATAB ASE=skill
s"
count = Request.Form("x") - 1
for i = 0 to (count)
strID = Request.form("Emp & " i " &"'")
QQ1= Request.form("Q1 & " i " &"'")
sSQL = "UPDATE ECuryear SET Q1= '" & QQ1 & "' where (empid ='" & strID
& "')"
Conn5S.Execute(sSQL)
NEXT

When I execute the web page with a response.write on the sequel
statement, this is what it returns. Does anyone see what I am doing
wrong?

UPDATE ECuryear SET Q1= '' where (empid ='')

Dec 27 '06 #3
Bob Barrows [MVP] wrote:
>
<%
Dim strID, QQ1
count = Request.Form("x") - 1
Response.Write "count contains '" & count & "'<BR>"
for i = 0 to (count)
Response.Write "i contains '" & i & "'<BR>"
strID = Request.form("Emp & " i " &"'")
Response.Write "strID contains '" & strID & "'<BR>"
QQ1= Request.form("Q1 & " i " &"'")
Response.Write "QQ1 contains '" & QQ1 & "'<BR>"
sSQL = "UPDATE ECuryear SET Q1= '" & QQ1 & "' where (empid ='" & strID
& "')"
Response.Write "sSQL contains '" & sSQL & "'<BR>"
NEXT
%>
actually, it should look like this:

<%
Dim key, strID, QQ1
For Each key in Request.Form
Response.Write "Request.Form(key) contains '" & _
Request.Form(key) & "'<BR>"
Next
count = Request.Form("x") - 1
Response.Write "count contains '" & count & "'<BR>"
for i = 0 to (count)
Response.Write "i contains '" & i & "'<BR>"
strID = Request.form("Emp & " i " &"'")
Response.Write "strID contains '" & strID & "'<BR>"
QQ1= Request.form("Q1 & " i " &"'")
Response.Write "QQ1 contains '" & QQ1 & "'<BR>"
sSQL = "UPDATE ECuryear SET Q1= '" & QQ1 & "' where (empid ='" & strID
& "')"
Response.Write "sSQL contains '" & sSQL & "'<BR>"
NEXT
%>

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Dec 27 '06 #4

Bob Barrows [MVP] wrote:
Bob Barrows [MVP] wrote:

<%
Dim strID, QQ1
count = Request.Form("x") - 1
Response.Write "count contains '" & count & "'<BR>"
for i = 0 to (count)
Response.Write "i contains '" & i & "'<BR>"
strID = Request.form("Emp & " i " &"'")
Response.Write "strID contains '" & strID & "'<BR>"
QQ1= Request.form("Q1 & " i " &"'")
Response.Write "QQ1 contains '" & QQ1 & "'<BR>"
sSQL = "UPDATE ECuryear SET Q1= '" & QQ1 & "' where (empid ='" & strID
& "')"
Response.Write "sSQL contains '" & sSQL & "'<BR>"
NEXT
%>

actually, it should look like this:

<%
Dim key, strID, QQ1
For Each key in Request.Form
Response.Write "Request.Form(key) contains '" & _
Request.Form(key) & "'<BR>"
Next
count = Request.Form("x") - 1
Response.Write "count contains '" & count & "'<BR>"
for i = 0 to (count)
Response.Write "i contains '" & i & "'<BR>"
strID = Request.form("Emp & " i " &"'")
Response.Write "strID contains '" & strID & "'<BR>"
QQ1= Request.form("Q1 & " i " &"'")
Response.Write "QQ1 contains '" & QQ1 & "'<BR>"
sSQL = "UPDATE ECuryear SET Q1= '" & QQ1 & "' where (empid ='" & strID
& "')"
Response.Write "sSQL contains '" & sSQL & "'<BR>"
NEXT
%>

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Thanks for the response but when I used the code above this is the
response I got.

Microsoft VBScript compilation error '800a03ee'

Expected ')'

/EAP/QSUpdated.asp, line 21

strID = Request.form("Emp & " i " &"'")
------------------------------^

Dec 27 '06 #5
pmarisole wrote:
Thanks for the response but when I used the code above this is the
response I got.

Microsoft VBScript compilation error '800a03ee'

Expected ')'

/EAP/QSUpdated.asp, line 21

strID = Request.form("Emp & " i " &"'")
------------------------------^
Well, I'm surprised you didn't get this error in the first place because I
essentially copied your code. The line should look like this, of course:

strID = Request.form("Emp" & i )

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Dec 27 '06 #6
pmarisole wrote:
Thanks for the response but when I used the code above this is the
response I got.

Microsoft VBScript compilation error '800a03ee'

Expected ')'

/EAP/QSUpdated.asp, line 21

strID = Request.form("Emp & " i " &"'")
------------------------------^
And my suggested code would be more helpful if it looked like this:
For Each key in Request.Form
Response.Write "Request.Form(""" & key & """) contains '" & _
Request.Form(key) & "'<BR>"
Next

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Dec 27 '06 #7

Bob Barrows [MVP] wrote:
pmarisole wrote:
Thanks for the response but when I used the code above this is the
response I got.

Microsoft VBScript compilation error '800a03ee'

Expected ')'

/EAP/QSUpdated.asp, line 21

strID = Request.form("Emp & " i " &"'")
------------------------------^

And my suggested code would be more helpful if it looked like this:
For Each key in Request.Form
Response.Write "Request.Form(""" & key & """) contains '" & _
Request.Form(key) & "'<BR>"
Next

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
I added your code as follows:
<%
Dim
strID,QQ1,QQ2,QQ3,QQ4,QQ5,QQ6,QQ7,QQ8,QQ9,QS,FYVar ,count,i,sSQL,Conn5S,key
'************************************************* ****************************
Set Conn5S = Server.CreateObject("ADODB.Connection")
Conn5S.Open "Provider=sqloledb;Data
Source=ebs-sqlc1-vs3.edn.runi.com\SSS;UID=casuser;PWD=hppccas;DATAB ASE=skills"

For Each key in Request.Form
Response.Write "Request.Form(""" & key & """) contains '" & _
Request.Form(key) & "'<BR>"
Next
count = Request.Form("x") - 1
Response.Write "count contains '" & count & "'<BR>"
for i = 0 to (count)
Response.Write "i contains '" & i & "'<BR>"
strID = Request.form("Emp" & i)
Response.Write "strID contains '" & strID & "'<BR>"
QQ1 = Request.form("Q1" & i)
Response.Write "QQ1 contains '" & QQ1 & "'<BR>"
QQ2 = Request.form("Q2" & i)
Response.Write "QQ2 contains '" & QQ2 & "'<BR>"
QQ3 = Request.form("Q3" & i)
Response.Write "QQ3 contains '" & QQ3 & "'<BR>"
QQ4 = Request.form("Q4" & i)
Response.Write "QQ4 contains '" & QQ4 & "'<BR>"
QQ5 = Request.form("Q5" & i)
Response.Write "QQ5 contains '" & QQ5 & "'<BR>"
QQ6 = Request.form("Q6" & i)
Response.Write "QQ6 contains '" & QQ6 & "'<BR>"
QQ7 = Request.form("Q7" & i)
Response.Write "QQ7 contains '" & QQ7 & "'<BR>"
QQ8 = Request.form("Q8" & i)
Response.Write "QQ8 contains '" & QQ8 & "'<BR>"
QQ9 = Request.form("Q9" & i)
Response.Write "QQ9 contains '" & QQ9 & "'<BR>"
sSQL = "UPDATE ECuryear SET Q1= '" & QQ1 & "',Q2= '" & QQ2 & "',Q3= '"
& QQ3 & "',Q4= '" & QQ4 & "',Q5= '" & QQ5 & "',Q6= '" & QQ6 & "',Q7= '"
& QQ7 & "',Q8= '" & QQ8 & "',Q9= '" & QQ9 & "', where (empid ='" &
strID & "')"
Response.Write "sSQL contains '" & sSQL & "'<BR>"
on error resume next
Conn5S.Execute(sSQL)
NEXT
%>

THIS IS THE REPONSE I GET....... It shows the value of the fields when
I loop through
the key but when I call the field QQ1= Request.form("Q1" & i), I
don't get the value to add to the database. What could be wrong?

Request.Form("Emp_1") contains '223851'
Request.Form("Q1_1") contains '3'
Request.Form("Q2_1") contains '3'
Request.Form("Q3_1") contains '3'
Request.Form("Q4_1") contains '3'
Request.Form("Q5_1") contains '3'
Request.Form("Q6_1") contains '3'
Request.Form("Q7_1") contains '3'
Request.Form("Q8_1") contains '3'
Request.Form("Q9_1") contains '3'
Request.Form("fy06_1") contains '8.33'
Request.Form("fy07_1") contains '3'
Request.Form("fy08_1") contains '-5.33'

Request.Form("Emp_2") contains '24224'
Request.Form("Q1_2") contains '8'
Request.Form("Q2_2") contains '8'
Request.Form("Q3_2") contains '8'
Request.Form("Q4_2") contains '8'
Request.Form("Q5_2") contains '8'
Request.Form("Q6_2") contains '8'
Request.Form("Q7_2") contains '8'
Request.Form("Q8_2") contains '8'
Request.Form("Q9_2") contains '8'
Request.Form("fy06_2") contains '7.25'
Request.Form("fy07_2") contains '8'
Request.Form("fy08_2") contains '0.75'
Request.Form("x") contains '2'
i contains '0'
strID contains ''
QQ1 contains ''
QQ2 contains ''
QQ3 contains ''
QQ4 contains ''
QQ5 contains ''
QQ6 contains ''
QQ7 contains ''
QQ8 contains ''
QQ9 contains ''
sSQL contains 'UPDATE ECuryear SET Q1= '',Q2= '',Q3= '',Q4= '',Q5=
'',Q6= '',Q7= '',Q8= '',Q9= '', where (empid ='')'
i contains '1'
strID contains ''
QQ1 contains ''
QQ2 contains ''
QQ3 contains ''
QQ4 contains ''
QQ5 contains ''
QQ6 contains ''
QQ7 contains ''
QQ8 contains ''
QQ9 contains ''
sSQL contains 'UPDATE ECuryear SET Q1= '',Q2= '',Q3= '',Q4= '',Q5=
'',Q6= '',Q7= '',Q8= '',Q9= '', where (empid ='')'

Thanks for your help

Dec 28 '06 #8
pmarisole wrote:
THIS IS THE REPONSE I GET....... It shows the value of the fields
when I loop through
the key but when I call the field QQ1= Request.form("Q1" & i), I
don't get the value to add to the database. What could be wrong?

Request.Form("Emp_1") contains '223851'
Request.Form("Q1_1") contains '3'
Well, what do you get when you do this when i contains 1:

Response.Write "'" & "Q1" & i & "'"

Run it and see. I'll bet you don't see 'Q1_1' do you? You probably see
'Q11'
The solution is to change
QQ1= Request.form("Q1" & i)
to
QQ1= Request.form("Q1_" & i)
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Dec 28 '06 #9

Bob Barrows [MVP] wrote:
pmarisole wrote:
THIS IS THE REPONSE I GET....... It shows the value of the fields
when I loop through
the key but when I call the field QQ1= Request.form("Q1" & i), I
don't get the value to add to the database. What could be wrong?

Request.Form("Emp_1") contains '223851'
Request.Form("Q1_1") contains '3'

Well, what do you get when you do this when i contains 1:

Response.Write "'" & "Q1" & i & "'"

Run it and see. I'll bet you don't see 'Q1_1' do you? You probably see
'Q11'
The solution is to change
QQ1= Request.form("Q1" & i)
to
QQ1= Request.form("Q1_" & i)
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Thanks so much, It works as you said.

Jan 4 '07 #10

Bob Barrows [MVP] wrote:
pmarisole wrote:
THIS IS THE REPONSE I GET....... It shows the value of the fields
when I loop through
the key but when I call the field QQ1= Request.form("Q1" & i), I
don't get the value to add to the database. What could be wrong?

Request.Form("Emp_1") contains '223851'
Request.Form("Q1_1") contains '3'

Well, what do you get when you do this when i contains 1:

Response.Write "'" & "Q1" & i & "'"

Run it and see. I'll bet you don't see 'Q1_1' do you? You probably see
'Q11'
The solution is to change
QQ1= Request.form("Q1" & i)
to
QQ1= Request.form("Q1_" & i)
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Thanks so much, It works as you said.

Jan 4 '07 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: shank | last post by:
I have a recordset that contains multiple records of product a user is purchasing. For clarity, I converted the recordset fields to variables. I need to take that entire recordset and insert it...
1
by: Roy Adams | last post by:
Hi everyone I'm trying to build a shopping cart app using a db the part I'm stuck on is the fact that, if someone adds a product that they have previously added to the cart. I've got it set up to...
2
by: George | last post by:
The flow of my app is as follows 1) Pull up an order and change the quantity of a textbox item. (Ex: change the quantity from 1 to 2 2) Click on the Update button 3) When the page posts back you...
34
by: Jeff | last post by:
For years I have been using VBA extensively for updating data to tables after processing. By this I mean if I had to do some intensive processing that resulted in data in temp tables, I would have...
2
by: Rob Long | last post by:
Hi I have an HTML select element in my page and it's multiple property is disabled (one item at a time mode) but I still want to transfer all the items in the select to the server when the form...
15
by: Jay | last post by:
I have a multi threaded VB.NET application (4 threads) that I use to send text messages to many, many employees via system.timer at a 5 second interval. Basically, I look in a SQL table (queue) to...
1
by: Justin | last post by:
I'm looping through my dataset and when I find a match I need to update a second field. However with this code ONLY the last record in the entire set/table is updated with ALL the records data: ...
16
by: fniles | last post by:
I am using VB.NET 2003, SQL 2000, and SqlDataAdapter. For every record in tblA where colB = 'abc', I want to update the value in colA. In VB6, using ADO I can loop thru the recordset,set the...
0
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.