Dim sParamArray As String = Request.Item("array")
Dim aArray As Array
aArray = sParamArray.Split(",")
Dim sValue1 As Integer = aArray(0)On Tue, Jan 5, 2010 at 10:47 PM, Nalum <[email protected]> wrote: > Hello All, > I'm trying to post an array to vb.net using jQuery. I can get the > posted variable back but not the individual members of the array. > > So lets say I post this array: [1,2,3,4] I can get the values by doing > Request.Item("array") but it gives me a result like this "1, 2, 3, 4". > What I would like to do is Request.Item("array)[0] which would give me > "1". > > I'm fairly new to .net so I could be going about it arseways. > > Thanks for any help. > > Regards, > Nalum >
