Is Operator

Addition Operator (+),And Operator,Assignment Operator (=),Concatenation Operator (&),Division Operator (/),Eqv Operator,Exponentiation Operator (^),Imp Operator,Integer Division Operator (\),Is Operator,Mod Operator,Multiplication Operator (*),Negation Operator (-),Not Operator,Operator Precedence,Or Operator,Subtraction Operator (-),Xor Operator Home home | Other Resources other resources | Advertise with us advertise | Link to us link to us | Contact us contact | Bookmark Us!
Google
 
Where can I find good Windows Web Hosting to host my VBScript Site?
You can find good Windows Hosting which support VBScript, ASP, ASP.Net,VisualStudio.Net and MSSQL at a very reasonable low monthly fee at EasyCGI.com and DiscountASP.Net

Is Operator

Compares two object reference variables.

result = object1 Is object2

Arguments

result

Any numeric variable.

object1

Any object name.

object2

Any object name.

Remarks

If object1 and object2 both refer to the same object, result is True; if they do not, result is False. Two variables can be made to refer to the same object in several ways.

In the following example, A has been set to refer to the same object as B:

Set A = B

The following example makes A and B refer to the same object as C:

Set A = C
Set B = C

VBScriptOnline.com - Addition Operator (+),And Operator,Assignment Operator (=),Concatenation Operator (&),Division Operator (/),Eqv Operator,Exponentiation Operator (^),Imp Operator,Integer Division Operator (\),Is Operator,Mod Operator,Multiplication Operator (*),Negation Operator (-),Not Operator,Operator Precedence,Or Operator,Subtraction Operator (-),Xor Operator