Hi, in a table column "ChildProperties" the value is:
314|355|854|111
Dim Vid : Vid = Request.QueryString("id")
' let say Vid is 444, I would like to determine if 444 is in the CParr array:
If NOT RS.EOF Then
Dim CParr,j : CParr = Split(RS("ChildProperties"), "|")
For j = 0 to Ubound(CParr)
'Now i'm looping thru the array,
'how can i do something if Vid does not
'match any of the array values? Thanks
Next
End If
314|355|854|111
Dim Vid : Vid = Request.QueryString("id")
' let say Vid is 444, I would like to determine if 444 is in the CParr array:
If NOT RS.EOF Then
Dim CParr,j : CParr = Split(RS("ChildProperties"), "|")
For j = 0 to Ubound(CParr)
'Now i'm looping thru the array,
'how can i do something if Vid does not
'match any of the array values? Thanks
Next
End If