I know how to make a single line comment in ASP:

Code:
' This is a comment
-or-

Code:
REM This is a comment
But how do you make a multi-line comment?

For example, the C++ equivalent would be:

Code:
/* This
spans
multiple 
lines
*/