Hello, I've got a weird issue,
i've got a datarepeater that reads some user entries froma database, and then shows them in an <asp:label>
..
my 1st problem was that when the text is read all \n
s got dropped ..
so I use a <pre>
tag to solve the problem..
however... a new problem occurred..
now the text actually goes 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>