ReportingAnalyst
MIS
Hi,
I request for form variables. I would like to grab all the values and dump into an array. How can I do that?
I am trying to modify this part of the code to my case. I request from another form. I do not request from a URL.
I thought that the values I get from the Request.form can be dumped into a single dimensional array. But from what I see in the code, it looks like it is looping through a multidimensional array.
Thanks.
Thanks.
I request for form variables. I would like to grab all the values and dump into an array. How can I do that?
I am trying to modify this part of the code to my case. I request from another form. I do not request from a URL.
Code:
'/// Collect the Values wanted into the dictionary object
for i = lbound(aParams) to ubound(aParams)
aKeyValue = split(aParams(i),"=")
skeyWord = request.QueryString.Key(i+1)
sIDX = skeyWord
sParam = aKeyValue(ubound(aKeyValue))
dList.add sIDX, aKeyValue(ubound(aKeyValue))
next
I thought that the values I get from the Request.form can be dumped into a single dimensional array. But from what I see in the code, it looks like it is looping through a multidimensional array.
Thanks.
Thanks.