Rem
The Rem statement allows you to include comments
(or remarks) in your code. VBScript also uses a shortcut
for this statement, the single quote character (') can also
be used to begin a comment.
Comments always extend until the end of the line. In the
case of the embedded scripting tags <% and %>, the comment
extends until the end of the embedded code.
Rem here is a comment ' this is another way to comment
We recommend that you use the single quote to comment out your
code because it is cleaner to read. This is especially true
if your text editor supports syntax highlighting.
|
 |

|