473,405 Members | 2,160 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,405 software developers and data experts.

For each item in Request.Form

I need to iterate through a submitted form, inserting data on each pass. In
the past, I have always used form elements that were named with numbers at
the end, like this,

name1 relationship1
name2 relationship2
name3 relationship3

With the above formatting, I could write a For... Next loop to insert all
the data into my database,

For i = 1 to 3
If Request.Form("name" & i) <> "" Then
sql = INSERT INTO Table (Name, Relationship)
sql = sql & " VALUES"
sql = sql & "('" Request.Form("name" & i) "',"
sql = sql & "('" Request.Form("relationship" & i) "')"

'Execute SQL
End If
Next

Now I am working on a new loop, but do not want to go back and change the
way the submitting page works. I saw on while researching that I can use a
For each item in Request.Form, but tried this and it throws off my SQL
statement. It adds all of the request.form values to the sql statement,
which then fails.

How can I make this loop?

Thanks,
Drew
Jan 24 '06 #1
14 19845
Drew wrote:
I need to iterate through a submitted form, inserting data on each
pass. In the past, I have always used form elements that were named
with numbers at the end, like this,

name1 relationship1
name2 relationship2
name3 relationship3

With the above formatting, I could write a For... Next loop to insert
all the data into my database,

For i = 1 to 3
If Request.Form("name" & i) <> "" Then
sql = INSERT INTO Table (Name, Relationship)
sql = sql & " VALUES"
sql = sql & "('" Request.Form("name" & i) "',"
sql = sql & "('" Request.Form("relationship" & i) "')"

'Execute SQL
End If
Next

Now I am working on a new loop, but do not want to go back and change
the way the submitting page works. I saw on while researching that I
can use a For each item in Request.Form, but tried this and it throws
off my SQL statement. It adds all of the request.form values to the
sql statement, which then fails.


Response.Write the statement to see why it fails. We cannot debug a sql
statement without seeing what it is.

--
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.
Jan 24 '06 #2
The SQL Statement will look like this, if there are 3 textboxes for name and
relationship,

INSERT INTO Table (Name,Relationship) VALUES ('Jack, John, Diane','Brother,
Brother, Sister')

I need it to look like this,

INSERT INTO Table (Name,Relationship) VALUES ('Jack','Brother')
INSERT INTO Table (Name,Relationship) VALUES ('John','Brother')
INSERT INTO Table (Name,Relationship) VALUES ('Diane','Sister')

Thanks,
Drew
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:ug****************@TK2MSFTNGP12.phx.gbl...
Drew wrote:
I need to iterate through a submitted form, inserting data on each
pass. In the past, I have always used form elements that were named
with numbers at the end, like this,

name1 relationship1
name2 relationship2
name3 relationship3

With the above formatting, I could write a For... Next loop to insert
all the data into my database,

For i = 1 to 3
If Request.Form("name" & i) <> "" Then
sql = INSERT INTO Table (Name, Relationship)
sql = sql & " VALUES"
sql = sql & "('" Request.Form("name" & i) "',"
sql = sql & "('" Request.Form("relationship" & i) "')"

'Execute SQL
End If
Next

Now I am working on a new loop, but do not want to go back and change
the way the submitting page works. I saw on while researching that I
can use a For each item in Request.Form, but tried this and it throws
off my SQL statement. It adds all of the request.form values to the
sql statement, which then fails.


Response.Write the statement to see why it fails. We cannot debug a sql
statement without seeing what it is.

--
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.

Jan 24 '06 #3
Drew wrote:
The SQL Statement will look like this, if there are 3 textboxes for
name and relationship,

INSERT INTO Table (Name,Relationship) VALUES ('Jack, John,
Diane','Brother, Brother, Sister')


So this is the failing statement resulting from your code?
Let's see the code that generated this.

--
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.
Jan 24 '06 #4
If Request.Form("Submitted") = "Yes" Then
'Start Loop
For Each item In Request.Form
'Run Insert Code
sql="INSERT INTO People (Name,Relationship)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("Name") & "',"
sql=sql & "'" & Request.Form("Relationship") & "')"

'execute the insert to SQL Server
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_lcnn_STRING
MM_editCmd.CommandText = sql
Response.Write(sql)
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
Next
End If

Thanks,
Drew
"Bob Barrows [MVP]" <re******@NOyahoo.SPAMcom> wrote in message
news:u7****************@tk2msftngp13.phx.gbl...
Drew wrote:
The SQL Statement will look like this, if there are 3 textboxes for
name and relationship,

INSERT INTO Table (Name,Relationship) VALUES ('Jack, John,
Diane','Brother, Brother, Sister')


So this is the failing statement resulting from your code?
Let's see the code that generated this.

--
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.

Jan 24 '06 #5
Drew wrote on 24 jan 2006 in microsoft.public.inetserver.asp.general:
For Each item In Request.Form
'Run Insert Code
sql="INSERT INTO People (Name,Relationship)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("Name") & "',"
sql=sql & "'" & Request.Form("Relationship") & "')"


I don't think this will work.

Do you expect multiple
Request.Form("Name") and Request.Form("Relationship") groups
that will listen to "Each item In Request.Form" ???
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jan 24 '06 #6
Yep... as I say, I have never used the "For each item in Request.Form", I
thought it would iterate through each form element, instead it just comma
delimits them and that is it. I guess I will have to build an array in the
For... Next loop and insert the array values?

Thanks,
Drew

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
Drew wrote on 24 jan 2006 in microsoft.public.inetserver.asp.general:
For Each item In Request.Form
'Run Insert Code
sql="INSERT INTO People (Name,Relationship)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("Name") & "',"
sql=sql & "'" & Request.Form("Relationship") & "')"


I don't think this will work.

Do you expect multiple
Request.Form("Name") and Request.Form("Relationship") groups
that will listen to "Each item In Request.Form" ???
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Jan 24 '06 #7
Drew wrote:
If Request.Form("Submitted") = "Yes" Then
'Start Loop
For Each item In Request.Form
'Run Insert Code
sql="INSERT INTO People (Name,Relationship)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("Name") & "',"
sql=sql & "'" & Request.Form("Relationship") & "')"


To see what is going on here, do a
Response.Write Request.Form("Name")
See? the form submission process concatenates the values from all
like-minded fields into a comma-delimited string.

You need to revert to the technique of differentiating the field names with
"row" numbers. You can still use "for each":

dim sql,sName,sRelationship, arParms
sql="INSERT INTO People (Name,Relationship) Values(?,?)"
dim cn

'Always use an explicit connection object - implicit connections
'can impair performance by disabling session pooling

Set cn = Server.CreateObject("ADODB.Connection")
cn.open MM_lcnn_STRING
Set MM_editCmd = Server.CreateObject("ADODB.Command")
Set MM_editCmd.ActiveConnection = cn
MM_editCmd.CommandText = sql
MM_editCmd.commandtype = 1 'adCmdText
For Each item In Request.Form
If left(item,4) = "Name" then
rownumber= mid(item,5)
sName=request.form(item)
sRelationship=request.form("Relationship" & rownumber)
arParms=Array(sName,sRelationship)
MM_editCmd.Execute ,arParms, 128 'adExecuteNoRecords
end if
Next
cn.close: set cn=nothing

--
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.
Jan 24 '06 #8
If you could be sure the field values were always in the proper order (I am
not sure this is a valid assumption), you could do this:

dim arNames, arRelationships, i
arNames = Split(Request.Form("Name"),",")
arRelationships = Split(Request.Form("Relationship"),",")

dim sql,sName,sRelationship, arParms
sql="INSERT INTO People (Name,Relationship) Values(?,?)"
dim cn

'Always use an explicit connection object - implicit connections
'can impair performance by disabling session pooling

Set cn = Server.CreateObject("ADODB.Connection")
cn.open MM_lcnn_STRING
Set MM_editCmd = Server.CreateObject("ADODB.Command")
Set MM_editCmd.ActiveConnection = cn
MM_editCmd.CommandText = sql
MM_editCmd.commandtype = 1 'adCmdText
for i = 0 to ubound(arNames)
arParms= Array(arNames(i), arRelationships(i))
MM_editCmd.Execute ,arParms, 128 'adExecuteNoRecords
Next
cn.close: set cn=nothing
Drew wrote:
Yep... as I say, I have never used the "For each item in
Request.Form", I thought it would iterate through each form element,
instead it just comma delimits them and that is it. I guess I will
have to build an array in the For... Next loop and insert the array
values?

Thanks,
Drew

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
Drew wrote on 24 jan 2006 in microsoft.public.inetserver.asp.general:
For Each item In Request.Form
'Run Insert Code
sql="INSERT INTO People (Name,Relationship)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("Name") & "',"
sql=sql & "'" & Request.Form("Relationship") & "')"


I don't think this will work.

Do you expect multiple
Request.Form("Name") and Request.Form("Relationship") groups
that will listen to "Each item In Request.Form" ???
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)


--
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.
Jan 24 '06 #9
What heppens if the persons name happens to be O'Brian ?

Or worse yet what happens if the user enters something like:-
',''); Delete People; Other SQL code that does malicious things; --

?? Ouch.

It's called SQL Injection.


"Drew" wrote:
Yep... as I say, I have never used the "For each item in Request.Form", I
thought it would iterate through each form element, instead it just comma
delimits them and that is it. I guess I will have to build an array in the
For... Next loop and insert the array values?

Thanks,
Drew

"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
Drew wrote on 24 jan 2006 in microsoft.public.inetserver.asp.general:
For Each item In Request.Form
'Run Insert Code
sql="INSERT INTO People (Name,Relationship)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("Name") & "',"
sql=sql & "'" & Request.Form("Relationship") & "')"


I don't think this will work.

Do you expect multiple
Request.Form("Name") and Request.Form("Relationship") groups
that will listen to "Each item In Request.Form" ???
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)


Jan 24 '06 #10
Drew wrote on 24 jan 2006 in microsoft.public.inetserver.asp.general:
"Evertjan." <ex**************@interxnl.net> wrote in message
news:Xn********************@194.109.133.242...
Drew wrote on 24 jan 2006 in microsoft.public.inetserver.asp.general:
For Each item In Request.Form
'Run Insert Code
sql="INSERT INTO People (Name,Relationship)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("Name") & "',"
sql=sql & "'" & Request.Form("Relationship") & "')"

I don't think this will work.

Do you expect multiple
Request.Form("Name") and Request.Form("Relationship") groups
that will listen to "Each item In Request.Form" ???


[please do not toppost on usenet]
Yep... as I say, I have never used the "For each item in
Request.Form", I thought it would iterate through each form element,
instead it just comma delimits them and that is it. I guess I will
have to build an array in the For... Next loop and insert the array
values?


No, no array.

Just have individual numbered names for the form values,
the below works for any number of entries:

<input name='Name1'> <input name='Relationship1'><br>
<input name='Name2'> <input name='Relationship2'><br>
<input name='Name3'> <input name='Relationship3'><br>
.................
===================================
debug = true
' debug = false
n=1
while Request.Form("Name" & n) <> ""
sql = "INSERT INTO People (Name,Relationship) VALUES "&_
"('" & Request.Form("Name" & n) & "','" &_
Request.Form("Relationship" & n) & "')"
if debug then
response.write sql & "<br>"
else
CONN.execute(sql)
end if
n=n+1
wend
if debug then response.end
.....

====================================

not tested.

btw: You will have to do proper validation against hacker injection,
if this is an open internet job!!!!
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jan 24 '06 #11

Drew wrote:
If Request.Form("Submitted") = "Yes" Then
'Start Loop
For Each item In Request.Form
'Run Insert Code
sql="INSERT INTO People (Name,Relationship)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("Name") & "',"
sql=sql & "'" & Request.Form("Relationship") & "')"

'execute the insert to SQL Server
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_lcnn_STRING
MM_editCmd.CommandText = sql
Response.Write(sql)
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
Next
End If


I would rather use an ado.recordset object, which will handle the
possible SQL injection attacks.

For example, let's say each form name you want to save into the
database begins with name_ and relationship_

so
name_1, relationship_1
name_2, relationship_2

etc.

for each item in request.form
if left(item,5)="name_" then
itemcount=right(item,len(item)-5)
rs.addnew
rs("name")=request.form(item)
rs("relationship")=request.form("relationship_" & itemcount)
rs.update
end if
next

Jan 24 '06 #12
Thanks for all the replies. I finally got this fixed by just renaming the
form elements to name1, name2, name3, relationship1, etc... SQL injection is
not one of my worries, since these apps reside on an intranet. If someone
does do a injection attack, we will know who it was, take administrative
action and restore our data from the tapes...

It would be better to prevent them in the first place, but then how do you
take administrative action? We want to get any employee who is trying to
damage our network/database out of this organization.

Thanks,
Drew

"Larry Bud" <la**********@yahoo.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...

Drew wrote:
If Request.Form("Submitted") = "Yes" Then
'Start Loop
For Each item In Request.Form
'Run Insert Code
sql="INSERT INTO People (Name,Relationship)"
sql=sql & " VALUES "
sql=sql & "('" & Request.Form("Name") & "',"
sql=sql & "'" & Request.Form("Relationship") & "')"

'execute the insert to SQL Server
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_lcnn_STRING
MM_editCmd.CommandText = sql
Response.Write(sql)
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
Next
End If


I would rather use an ado.recordset object, which will handle the
possible SQL injection attacks.

For example, let's say each form name you want to save into the
database begins with name_ and relationship_

so
name_1, relationship_1
name_2, relationship_2

etc.

for each item in request.form
if left(item,5)="name_" then
itemcount=right(item,len(item)-5)
rs.addnew
rs("name")=request.form(item)
rs("relationship")=request.form("relationship_" & itemcount)
rs.update
end if
next

Jan 24 '06 #13
Drew wrote:
Thanks for all the replies. I finally got this fixed by just
renaming the form elements to name1, name2, name3, relationship1,
etc... SQL injection is not one of my worries, since these apps
reside on an intranet.
A majority of hacks are done by disgruntled employees
If someone does do a injection attack, we
will know who it was, take administrative action and restore our data
from the tapes...
It would be better to prevent them in the first place, but then how
do you take administrative action?


Validate the data in server-side code before using it, logging the
suspicious data and the user's name.

SAL Injection is not the only reason to avoid dynamic sql. It's a powerful
reason, but not the only one. Performance and code maintainability also
enter into the equation.
--
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"
Jan 24 '06 #14
Larry Bud wrote:

I would rather use an ado.recordset object, which will handle the
possible SQL injection attacks.


But that adds its own overhead. Cursors are very inefficient when it comes
to maintaining data. It is much better to use DML, and SQL Injection is
easily prevented by the use of parameters as I illustrated in my two posts.

Bob Barrows
--
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"
Jan 24 '06 #15

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

Similar topics

6
by: Christopher Brandsdal | last post by:
Hi! I get an error when I run my code Is there any other way to get te information from my form? Heres the error I get and the code beneath. Line 120 is market with ''''''''''''Line...
2
by: Laurent Bertin | last post by:
Hi i got a strange problem but it's true i don't make thing like anyone... First Config: + IIS5.0 SP2 (yes i know...) WebSite Security Root : Digest Authentication, NT Authenticated SubFolders...
9
by: Dan | last post by:
I am trying to use Request.Form("__EVENTTARGET") to get the name of the control that caused a post back. It keeps returning "". I am not really sure why, this happens for all of my controls...
10
by: Mr Newbie | last post by:
DropDown lists and Listboxes do not appear in the list of controls and values passed back to the server on PostBack in Request.Form object. Can someone confirm this to be correct and possibly...
8
by: abcd | last post by:
I can get the value on the form at the server side by using Request.form("max") when max field is disabled I dont get value. For GUI and business logic purpose I have disabled some fields with...
4
by: Michael Kujawa | last post by:
I am using the following to create an SQL statement using the names and values from request.form. The loop goes through each item in request.form The issue comes in having an additional "and" at...
1
by: Jeremy Fourman | last post by:
Hello, I am in need of parsing a page with a few text boxes and an option list. The current state of the input fields are <input type="text"> there are no id or name attributes, however the...
5
by: =?Utf-8?B?QVRT?= | last post by:
PRB JavaScript in ASP with Request.Form Please help, I'm having a problem with JavaScript in ASP, where the ASP page crashes when I try to determine if data was posted from a FORM or through a...
7
by: =?Utf-8?B?QVRT?= | last post by:
HOWTO Make CStr for JavaScript on ASP w/ Request.Form and QueryString In ASP, Request.Form and Request.QueryString return objects that do not support "toString", or any JavaScript string...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.