VBScript » Operators » <>

Version: 1.0

Syntax:

The <> operator is called the not equal or inequality operator.

Examples

Code:
<%
If 128 <> 777 Then
Response.Write("Not equal")
End If
%>
Output:
Not equal
Language(s): VBScript

See Also: