if i used this code to retrieve a form's elements and values, would i be able to split it down into (in this case) a 2 dimensional array? if so, how? :D
cheersCode:Dim i, arr1
arr1=split(Request.Form,"&")
for i=0 to ubound(arr1)
--i'm guessing i'll need a loop of some sort?
next
