Hello Everyone,
I am having a little problem with the following code and was wondering if anyone could help me out:
When testing the output of varContent with IsNull function they all test out as "True" which definitely should not be the case. What am I not understanding about NULL values in vbscript? Thanks in advance for any help
I am having a little problem with the following code and was wondering if anyone could help me out:
Code:
If IsNull(oRS.Fields("content")) Then
varContent = " "
Else
varContent = oRS.Fields("content")
End If
When testing the output of varContent with IsNull function they all test out as "True" which definitely should not be the case. What am I not understanding about NULL values in vbscript? Thanks in advance for any help