newbie question: How do I add line breaks to an nvarchar variable?
I am building a ColdFusion website for the first time. I am using ColdFusion 8
I have a MS SQL Server 2008 database that I need to query.
I need to concatenate nvarchar variables into one nvarchar variable separated by new lines.
(I am using commas for now but it looks messy)
I using the XML blackbox method from
http://www.simple-talk.com/sql/t-sql-programming/concatenating-row-values-in-transact-sql/
I need to display the results on my ColdFusion website.
I tried using Char(9) Char(10) Char(13)
Chr(13) etc. None of these work for the website. They just add new lines when I print the results on management studio.
I have seen this question posted in several forums but no answers.
Someone suggested using a reporting tool in stead but no references.
Please help!
