IsObject
The IsObject function determines if a variable holds an object.
An object may be assigned to a variable using the Set statement.
The function returns a value of True if the variable holds an
object reference. Otherwise, this function returns a value of
False.
Dim oMail
oMail = Server.CreateObject("CDONTS.mail") If IsObject(oMail) Then Response.Write "oMail is an object"
|
 |

|