Can't seem to find an answer for this anywhere.
I'm using Alex K.'s solution to send the array in the query string, but I don't know how to break down the array in VB.NET.
No variation of this
Dim qryArray As String() = context.Request.QueryString("qryArray")
is working. It keeps saying qryArray is not declared when I try to use it.
Thanks in advance!
EDIT
I used this format to send the values in the query string:
qryArray =[value1,...,valueN]
Thanks again for taking your time to help!