vbscript-less-than
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
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/FSO – Fichiers
WSH/FSO – Collections
WSH – WScript
FUNCTION: CByte( ) Implemented in version 1.0 You can determine the expression subtype by using the function VarType( ). CByte(Number) The CByte function converts any number between 0 and 255 to the variant of subtypeByte. Code: <% anynumber=(9.876) %> <% =CByte(anynumber) %> Output: 10 Code: <% anynumber=(255) %> <% =CByte(anynumber) %> Output: 255
VBScript – Statements
VBScript – Date/Heure