New line in textbox of Microsoft rdlc report





5.00/5 (14 votes)
Ever tried to put a break in the textbox of the rdlc report? \n and such don't work...
You have to put System.Environment.NewLine in the string,
so your excpression will look something like
= Fields!MyField1.Value + System.Environment.NewLine + Fields!MyField2