I have a javascript function that dynamically adds items to an array.
This array is holding items to be displayed on an ASP page. What is the
easiest way to pass this javascript array to an ASP page? I've tried
using a string, but since it's not a one-dimensional array, it would be
difficult figuring things out. The other problem is that not every
element in the array has to be filled in. For example, I have a few text
boxes for Label, Name, and Value. The user could either enter items in
all three or just the first and last item, or even the first 2 items.
Chris