I have a Winform application build with C# and .Net 2.0. I have a textbox set with MultiLine.
The problem is when someone write text with multiple line (press few enters) and press my save button than close and load the form again. All the new line disappear (the text is there at least).
Example:
Line1
Line3
This will be if I save and load :
Line1 Line3
Any idea why?
Update
The database is PostGres and when I use PGAdmin I can see all the line AND the "enters". So the persistence seem to have save all the line... the problem seem to be when I put back the string in the Textbox.