I am a young developer on asp.net MVC C#, now I'm getting stuck with this part of my code. I have one field in database which data type is 'nText'. Now I query this field to my view. But the text is not include the new line, actually the data is insert to the field by text box with the new line(ENTER).
This is my block code :
<%
string overview = Model.ItemDetail.Notes;
%>
<%= overview %>
Can anyone solve it please. Thanks.