vbscript-less-than or equal
OPERATOR: <=
Implemented in version 1.0
<=
The <= operator determines if the first expression is less-than-or-equal 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-or-equal the second expression.
Code:
<% 123 <= 456 %>
<% « a » <= « A » %>
Output:
True
False
FUNCTION: Abs() Implemented in version 1.0 Abs(Number) The Abs function returns the absolute value for a number. Negative numbers become positive. Positive numbers remain positive. Code: <% =Abs(-127.89) %> Output: 127.89 Code: <% =Abs(127.89) %> Output: 127.89
VBScript – Date/Heure
WSH – WshShell
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
STATEMENT: Dim Implemented in version 1.0 Dim The Dim statement allows you to explicitly declare one or more new variables and to allocate storage (memory) space. While you do not have to use Dim to create new variables in VBScript, the wise programmer prefers to use Dim. In fact, many programmer purposely include theOption Explicit statement in all of their VBScript…