I have a list field of the type "Multiple Lines of Text". When I retrieve it in my code-behind using item["field"].ToString(), it prints out the text, but without line-breaks. How can I add line breaks to the text?
What I have:
<p>Text text text.
Text text text.
Text Text Text.</p>
What I want:
<p>Text text text.<br/>
Text text text.<br/>
Text Text Text.</p>
