comment blocks of code in ASP
by Nirmala[ Edit ] 2009-09-24 11:25:59
Comment blocks of code in ASP
If you want to comment blocks of code just use the below procedure
<%
Sub doNotExecuteThisCode
Response.Write("Comment blocks of code")
Response.Write("Hi")
Response.Write("Hellow")
End Sub
%>
Now the blocks of code will be commented.
If you want to execute commented lines just use the below procedure
<%
'Sub doNotExecuteThisCode
Response.Write("Comment blocks of code")
Response.Write("Hi")
Response.Write("Hellow")
'End Sub
%>
Now the commented code will be executed.