Copy link to clipboard
Copied
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.
Copy link to clipboard
Copied
quotation marks
Copy link to clipboard
Copied
how?
you mean the following:
<cfquery name="qryTest" datasource="myds">
SELECT * FROM dual
</cfquery>
not exactly what I am looking for.
Copy link to clipboard
Copied
Actually, that's the result of htmleditformat which is a better option. The quotation marks would stop the code from executing, but the angle brackets would stop it from displaying.