|
-
May 28th, 2001, 08:37 PM
#1
Thread Starter
Member
recognizing null
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>   </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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|