IsNull
The IsNull function tests an expression to see if it evaulates
to the Null value. The Null value is used to indicate the
explicit absense of any data.
Dim sVar
If IsNull(sVar) Then Response.Write "Value is Null" sVar = "Hi" If IsNull(sVar) Then Response.Write "Value is Still Null"
|
 |

|