Empty
The Empty constant is assigned to all newly declared
variables which have not been assigned an inital value. You
can determine if a variable is empty or not by using the
IsEmpty function.
Dim sVar
If IsEmpty(sVar) Then Response.Write "Variable is Empty!"
|
 |

|