PDA

Click to See Complete Forum and Search --> : params


gsc1ugs
Jan 16th, 2001, 06:31 AM
How could i get each element with i in the params items
For each item in params
i=i+1
Response.Write i & "=" & params(item) & "<BR>"
Next

I'm trying to call specific elements of params so i can insert into a db

ie: params(i)

Cheers

gsc1ugs
Jan 16th, 2001, 06:33 AM
This dont work either
item(i)

Clunietp
Jan 16th, 2001, 10:25 PM
what params are you referring to?

gsc1ugs
Jan 17th, 2001, 04:02 AM
I've done it.. d'oh just remembered

set params = Request.Form


params.item("ParamaterWanted")


Cheers