hi,
i created a guestbook with an xml database. User submits the post, the post is saved in the xml file. To view the gusetbook, i use a databind statement in html file like this:
<%# DataBinder.Eval(Container.DataItem, "elementOfXmlFile") %>
The problem is when you try to view the guestbook, the text from the xml file dislpayed all in one line, without the format specified by the user (i mean no paragraphs, no new line etc). I checked the xml file, and noticed that there is a new line character when the user press enter.
How can i resolve the problem?