I know how to make a single line comment in ASP:
-or-Code:' This is a comment
But how do you make a multi-line comment?Code:REM This is a comment
For example, the C++ equivalent would be:
Code:/* This
spans
multiple
lines
*/
Printable View
I know how to make a single line comment in ASP:
-or-Code:' This is a comment
But how do you make a multi-line comment?Code:REM This is a comment
For example, the C++ equivalent would be:
Code:/* This
spans
multiple
lines
*/
easy:
' This is line one
' This is line two
' This is line three
;)
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
%>
so, there is no easy way of making a multi-line comment in asp?
Nope, sorry.
could always try:
Code:<% if 1=2 then %>
enter blah here
<% end if %>