npoi 读取excel单元格 内容写到数据库里,excel单元格内容是有换行的多行内容,写到表里后,label预览内容时无换行,但在修改状态下 textbox有换行显示正从,请问label 怎么解决?
以下是代码片段:
HSSFCell Point = (HSSFCell)sheet.GetRow(65).GetCell(0);
...
Point.SetCellType(CellType.STRING);
...
model.Point = Point.StringCellValue.Trim();
...
预览导入的数据:
this.L_Point.Text = (model.Point.Replace(Char.ConvertFromUtf32(32), " ")).Replace(Char.ConvertFromUtf32(13) + Char.ConvertFromUtf32(10), "<br />");
编辑导入的数据:
this.t_Point.Text = model.Point;
编辑状态下什么都不动,再点下修改,label就显示正常了