vbscript-not equal
OPERATOR: <>
Implemented in version 1.0
<>
The <> operator is called the not equal or inequality operator.
Code:
<%
If 128 <> 777 Then
Response.Write(« Not equal »)
End If
%>
Output:
Not equal
OPERATOR: <>
Implemented in version 1.0
<>
The <> operator is called the not equal or inequality operator.
Code:
<%
If 128 <> 777 Then
Response.Write(« Not equal »)
End If
%>
Output:
Not equal
WSH – WshShell
WSH/FSO – Fichiers
VBScript – Statements
FUNCTION: Atn( ) Implemented in version 1.0 Atn(Number) The Atn function returns the arctangent for a number. Code: <% =Atn(45.0) %> Output: 1.54857776146818 You can also use a negative number. Code: <% =Atn(-45.0) %> Output: -1.54857776146818
OPERATOR: > Implemented in version 1.0 > The > operator determines if the first expression is greater-than the second expression. Code: <% 123 > 456 %> <% « a » > « A » %> Output: False True
WSH/FSO – Fichiers