gridview

How to replace \n line breaks with HTML <br /> line breaks in GridView

This is very common scenario when you would like to show well formatted GridView content. To do this you could use the ItemTemplate which is used by default to render the cell for each row:

<%# ((string)Eval(“GridviewContent”)).Replace(“\n”, “<br />”) %>

Related TutorialsRazor view engine in ASP.NET 4.0
How to use Visual Studio to build a web service with ASP.NET in VB.NET
How …

Learn more