以下は私がデータベースから取得しているレコードです:
「親愛なる:学校に申し込んでいただきありがとうございます。プログラムへの申し込みを受け取りました。本日より、以下の申し込みを受け取りました。」
上記の値をラベルに入れようとしています。私のラベルは次のようになります。
<div id="secondd" style="float:left;width:50%;background-color:#C0D5F2;">
       <asp:Label id="valueIntroduction" Cssclass="labelarea" runat="server">   </asp:Label>
       <div  class="line"></div>
私の問題は、価値がラベルに適合していないことです。複数行のラベルとして作成するにはどうすればよいですか?
このdivを含むHTMLは次のとおりです。
<div id="first" style="float:left;width:50%;background-color:#C0D5F2"> 
    <div id="second" style="float:left;width:50%;background-color:#C0D5F2"> 
        <div id="Introduction" style="float:left;width:100%" class="wote">     
            Introduction: 
        </div> 
        <div class="line"></div> 
    </div>   
    <div id="secondd" style="float:left;width:50%;background-color:#C0D5F2;"> 
        <asp:Literal id="valueIntroduction" runat="server"> </asp:Literal> 
    <div class="line"></div>
</div>