How to make Html.DisplayFor display line breaks?

后端 未结 8 1525
梦谈多话
梦谈多话 2020-12-04 21:53

Embarrassingly newbie question:

I have a string field in my model that contains line breaks.

@Html.DisplayFor(x => x.MultiLineText)         


        
8条回答
  •  眼角桃花
    2020-12-04 22:12

    You create a display template for your data. Here's a post detailing how to do it. How do I create a MVC Razor template for DisplayFor()

    In that template you do the actual translating of newlines into
    and whatever other work needs to be done for presentation.

提交回复
热议问题