Hi,

I have the following string written in c#:

string strAddressAll = strAddress1 + ",\n" + strAddress2 + ",\n" +
strAddress3 + ",\n" + strCountry + ",\n" + strPostcode;

But it all appears on one line?

I've also tried adding in :

+ System.Environm ent.NewLine

but that didn't work either??

Any ideas what's going on?...