Is
The Is operator will compare to objects and return
true if they refer to the same object. This operator is primary
intended for those people who are doing object-oriented programming.
The key to understanding this operator is to understand that
the variable does not contain the object but rather contains
a reference to an object. Multiple variables may hold a
reference (in other languages similar to a pointer) to a single
object.
Set sVar1 = Server.CreateObject("cdonts.mail") Set sVar2 = sVar2 If sVar1 Is sVar2 Then Response.Write "Objects are the same"
|
 |

|