IsArray
The IsArray function will tell you if the variable
that you pass as an argument is an array or not. If the variable
holds an array, then the function will return True. Otherwise,
the function will return False.
Dim aArray aArray = Array(3) If IsArray(aArray) Then Response.Write "By Golly, It is!"
|
 |

|