I'm trying to create a conditional statement that returns one value if an aray field is null and another if it is not.
What I have is something like this:
If OraArray(I,1) = Null Then
response.write(dField)
Else
response.write("Is Not Null")
End If
The only problem is that even when some values are in fact null it automatically goes on to the else statement. Is there any way to trap Null values in an array?
What I have is something like this:
If OraArray(I,1) = Null Then
response.write(dField)
Else
response.write("Is Not Null")
End If
The only problem is that even when some values are in fact null it automatically goes on to the else statement. Is there any way to trap Null values in an array?