Hello you all,
I have used label in repeater to display news content.see the code below.
<asp:Label ID="lblNewsContent" Width="1000px" Height="500px" runat="server" Text='<%#Eval("News_Content")%>' ReadOnly="true" BorderStyle="None" BorderColor="#EFF3FB" BackColor="#EFF3FB" TextMode="MultiLine"></asp:Label >
Now problem is that how can i give new line in label after certain amount of characters?means i have say 500 characters record i want break line or give new line after 50 characters.how can i achieve this?i m fetching news content from DB.
Give me some guidence.
Thank you all.