以下是我从数据库中获取的记录:
“亲爱的:感谢您申请学校。我们已收到您对该计划的申请。截至今天,我们收到以下申请:”
我正在尝试将上述值放入标签中。我的标签如下所示:
<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>