PDA

Click to See Complete Forum and Search --> : Multi-line comment in ASP?


sail3005
Mar 30th, 2001, 08:54 PM
I know how to make a single line comment in ASP:


' This is a comment


-or-


REM This is a comment


But how do you make a multi-line comment?

For example, the C++ equivalent would be:


/* This
spans
multiple
lines
*/

tbdean
Mar 31st, 2001, 10:10 AM
easy:

' This is line one
' This is line two
' This is line three


;)

tbdean
Mar 31st, 2001, 10:41 AM
Or, you could do this...

<%

ASP Code Here

%>

<!--

Comments Go Here
But They Can Be Seen
By Anybody Who View's
The HTML Source - That Is,
They Will Be Sent To The Browser

//-->


<%

ASP Code Here

%>

sail3005
Mar 31st, 2001, 03:08 PM
so, there is no easy way of making a multi-line comment in asp?

tbdean
Mar 31st, 2001, 03:13 PM
Nope, sorry.

jdavison
Apr 2nd, 2001, 12:45 PM
could always try:

<% if 1=2 then %>

enter blah here

<% end if %>