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
OPERATOR: – Implemented in version 1.0 – The – operator has two uses. It is used for subtracting numbers. It also is used to indicated the sign of a number (i.e., -4.5832). Code: <% total = 5.678 – 0.234 – 23.1 %> Output: -17.656
VBScript – Chaînes
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
VBScript – Date/Heure
VBScript – Formatage