boolean = InArray(theValue)
Example Usage:
ASP Source Code:<% theValue = string InArray(theValue) %>
Function InArray(strValue) Dim i For i = 0 to UBound([arrayname]) If selCriteria(i,1) = cstr(strValue) Then InArray = TRUE Exit Function End If Next InArray = FALSE End Function