You are currently viewing the BOOK: Beginning ASP.NET 4 : in C# and VB section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Hi Imar,
While inserting review we have a textarea, so that we can enter review in multiple lines. Those lines are separated by new line(enter).
But on ViewDetails page we are showing review with label which is showing summary and body in single line.
So how we can show those summary and body in as it is format as written while inserting?
Using Replace you can convert the cariage return (vbCrlf in VB, \r\n in C#, or ControlChars.NewLine in both) with a <br /> tag. You can do that using a custom function similar to GertBooleanText from Chapter 13.