Create an ASCII new line inside a variable?
I have
<cfset stringineed = varibale1 & "\n" & variable2 & "\n" & variable3 & "\n" & variable3>
I need "\n" to produce an ASCII new line but it doesn't. it just sends the actual \n characters.
This is not to be dispayed in an HTML page which of coruse I would use <br />
But instead it's to be sent to a coldfusion function which is why I need an ASCII new line.
