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
FUNCTION: CDate( ) Implemented in version 1.0 You can determine the expression subtype by using the function VarType( ). CDate(Date) The CDate function converts any valid date and time expression to the variant of subtype Date. The default date output will be of the format: **/**/** The default time output will be of the format: **:**:** *M…
STATEMENT: ‘ Implemented in version 1.0 ‘ The ‘ statement allows you to insert comments into your code. Code: <% ‘ This is one of two ways to comment in VBScript %> <% Rem This is the other way %>
VBScript – Date/Heure
WSH/FSO – Fichiers
OPERATOR: < Implemented in version 1.0 < The < operator determines if the first expression is less-than the second expression. Code: <% 123 < 456 %> <% « a » < « A » %> Output: True False
WSH – WScript