Hi
I am trying to use web services for the first time.
I am using .net 2.0.
I am tring to get what is essentially an array of data. This approach would work.
Dim test As New ArrayList
test.Add("one")
test.Add("two")
test.Add("three")
Return test
The only problem here is that I need pairs of related info to be returned. Like this
Dim test As New Hashtable
test.Add("first", "one")
test.Add("second", "two")
test.Add("third", "three")
Return test
But it appears I cannot do this. Do you know of a way I could bring back the data in related pairs.
Essentially the first value is the folder name(first, second, third) and the second value(one, two, three) is the file name within that folder.