I am very new to ASP, it is far from my language of choice, and is completely out of my comfort zone.
I have two arrays, and I need to determine easily if a value from the first array exists in the second array. How would I do this? I am not sure what to even search for!
I did create a function to determine if a value exists in an array, but thats as far as I can get:
Function in_array(element, arr)
For i=0 To Ubound(arr)
If Trim(arr(i)) = Trim(element) Then
in_array = True
Exit Function
Else
in_array = False
End If
Next
End Function