Hi,
In database table in one column i am storing the data with the space like below
<br> TEST1 TEST2 TEST4 1 2 3 4 5 6
<asp:Label ID="lbltext" runat="server" />
lbltext.Text.Replace("\n", "<br>");
it showing out put like
TEST1 TEST2 TEST3
1 2 3
4 5 6
bUT I NEED TO SHOW OUT PUT LIKE:
TEST1 TEST2 TEST3
1 2 3
4 5 6
hOW can we do that.I applied style attribut for label control like Style='white-space: pre-wrap' In chrome it showing.But in IE9 or IE8 it's not working.But i need the Out Put in IE.
Help me.
Go to the complete details ...