Quick References
ADO
ASP
CSS2
HTML
JavaScript
Jet SQL
VBScript
WML
WMLScript
WSH
XHTML
XML DOM
XSLT
Features
Knowledge Base
Tutorials
Partners
ZVON.ORG
XML
Planet Source Code
VisualBuilder
Web Design
Your HTML Source
XML/XSLT Forums
ASPAlliance
Scripts
Programmers Heaven
Tek-Tips Forums
Developer Fusion
Code Project
All Operators
Eqv Operator
= Operator
OPERATORS: Is
Implemented in version 1.0
Is
The
Is
operator is used to determine if two variables refer to the same object. The output is either
True
or
False
.
Code:
<% Set object1 = Request.ServerVariables("SCRIPT_NAME") %>
<% Set object2 = object1 %>
<% =object1 Is object2 %>
Output:
True
Code:
<% Set object1 = Server.CreateObject("Scripting.FileSystemObject") %>
<% Set object2 = Request.ServerVariables("SCRIPT_NAME") %>
<% =object1 Is object2 %>
Output:
False
Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information