Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Trap Array Field with Null Value 1

Status
Not open for further replies.

dtrahokie

Programmer
May 10, 2004
25
US
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?
 
same as this thread

thread333-857957



Chris.

Indifference will be the downfall of mankind, but who cares?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top