D
Dave Karmens
for each inputField in Request.Form
for each inputValue in Request.Form(inputField)
response.write inputField & " = " & inputValue & "<br>"
next
next
Let's say this returns:
fld = fish
fld = dog
fld = cat
fld = bird
fld = emu
How can I get those values into a variables that I can then put into a
SQL string?
insert into tbl_tmp
(critter1, critter2, critter3, critter4, critter5)
values
(?????)
for each inputValue in Request.Form(inputField)
response.write inputField & " = " & inputValue & "<br>"
next
next
Let's say this returns:
fld = fish
fld = dog
fld = cat
fld = bird
fld = emu
How can I get those values into a variables that I can then put into a
SQL string?
insert into tbl_tmp
(critter1, critter2, critter3, critter4, critter5)
values
(?????)