no
var = "" is closer to IsNull(var), but not the same.
IsEmpty is completely different.
var = ""
IsEmpty(var) - returns false
and
var = Empty
IsEmpty(var) - returns true
and
Dim var
IsEmpty(var) - returns true
IsEmpty:
http://msdn.microsoft.com/library/de...fctisempty.asp
IsNull:
http://msdn.microsoft.com/library/de...sfctisnull.asp
All vbscript functions:
http://msdn.microsoft.com/library/de...ifunctions.asp