There's this strange issue I've encountered,
I have a data repeater that retrieves user entries from a database and displays them in an <asp:label>
tag..
Initially, my problem was that all the \n
s were being removed when the text was read...
As a workaround, I used a <pre>
tag to address this problem...
but now a new issue has surfaced..
the text is actually overflowing beyond the label's border.
<td width="630px" >
<pre>
<asp:Label ID="lblComments" runat="Server"
width="630px" Text='<%#DataBinder.Eval(Container.DataItem, "Comments") %>'
Style="font-size: larger">
</asp:Label>
</pre>
</td>