You are here: irt.org | FAQ | ColdFusion | Q3016 [ previous next ]
You can "escape" the pound sign by doubling it. For example:
<cfoutput><font color="##FFFFFF">#myVariable#</font></cfoutput>
Alternately, consider moving the CFOUTPUT tags closer to the variable, like this:
<font color="#FFFFFF"><cfoutput>#myVariable#</cfoutput></font>