This article will teach you how to determine whether the variable is an array in ASP.
ASP to determine whether the variable is an array method: Isarray (varname)
If the variable is an array, the Isarray function returns true; otherwise, the function returns false.
The following example uses the Isarray function to verify whether the STRS is a group:
Dim strs
Dim strs (3)
strs (0) = Sunday
strs (1) = Monday
strs (2) = tuesday
response.write Isarray (strs)