vbscript-comment
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 %>
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 – Statements
VBScript – Date/Heure
VBScript – Math
WSH/FSO – Collections
WSH – WScript
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