I am trying to find a better way to recognize a null value than the one I am currently using:

For Each Feel In objInfo.Fields
*** If TypeName(Feel.Value) = "Null" Then
Response.write "<TD> &nbsp </TD>"
Else
Response.Write "<TD>" & Feel.Value & "</TD>"
End If
Next

This works...but I would rather use something more like VB...
If IsNull...I know that VBScript does not support this, but what are the alternatives? Thanks.