Question
Tag to make coldfusion skip parsing a certain block of code.
Is there a tag to make coldfusion skipping parsing a certain code.
Example, I want coldfusion to output the following code without executing it.
<cfquery name="qryTest" datasource="myds">
SELECT * FROM dual
</cfquery>
should result as
<cfquery name="qryTest" datasource="myds">
SELECT * FROM dual
</cfquery>
not coldfusion executing the qryTest.
