2016-10-04 133 views
1

多行文本框的文本與新的生產線如果我在多行文本框下方的文本輸入無法顯示在標籤

Nitin 
Kumar 
Shukla 

然後我得到這個結果

Nitin Kumar Shukla 

,但我想造成同我在我的多行文本框

這裏寫的是我的aspx頁面代碼

<asp:TextBox ID="ttt" TextMode="MultiLine" runat="server"></asp:TextBox> 
    <asp:Button ID="btn" runat="server" Text="hjhj" onclick="btn_Click" /> 
    <asp:Label ID="lll" runat="server"></asp:Label> 

這裏是我的CS頁面代碼

protected void btn_Click(object sender, EventArgs e) 
    { 
     lll.Text = ttt.Text; 
    } 

回答

3

試試這個

lll.Text = ttt.Text.Replace(Environment.NewLine, "<br />");