In ASP Classic, Request.Form("someName") returns an object that implements the IStringList interface. This interface has two members, Item([i]]) , which is the default property and Count .
You must remove the suffixes [] if you are sending to ASP. You can access multiple values ββthat use the same name using the optional indexer parameter i . For instance.
Dim someValue : someValue = Request.Form("someName")(2)
I can't remember if this collection is based on 0 or 1, but it should be easy for you to check. An object may also support For Each , but this may not be as useful in your scenario.
source share