How to format label text like below to make text display a few lines?
<asp:Label ID="Label103" runat="server" Style="z-index: 1; left: 431px; top: 11px;
position: absolute; width: 92px; height: 15px; text-align: left;" Text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
BorderColor="LightBlue" BorderStyle="Solid" BorderWidth="1px"></asp:Label>
become like below
<asp:Label ID="Label103" runat="server" Style="z-index: 1; left: 431px; top: 11px;
position: absolute; width: 92px; height: 15px; text-align: left;" Text="AAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAA"
BorderColor="LightBlue" BorderStyle="Solid" BorderWidth="1px"></asp:Label>
Go to the complete details ...