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
