Hi,
I'm exporting a RadGridview to excel, the only thing that I need is add a new line inside some cells,
the value inside the cell has \t \n but when I export the excel I get something like this <br> inside my excel file.
I'm using the following to change from \t \n to <br> but It doesn't work
if (e.Element == ExportElement.Cell )
{
e.Value = e.Value.ToString().Replace("\t \n", " <br> ");
}
what is the corret way to do it.
Thanks in advance