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
Printable View
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
This dont work either
item(i)
what params are you referring to?
I've done it.. d'oh just remembered
set params = Request.Form
params.item("ParamaterWanted")
Cheers