How can I put a # (pound sign) in my ColdFusion output?
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>
6449 viewed | 2 opinion(s) | del.icio.us | Digg it | Tjarko @ 14/11/02 9:22 cet


