2014-12-03 77 views
-2

我有一個按鈕,一些文字,我希望把上的按鈕我做這裏面新行:「 n」不會的ASP裏面工作:按鈕的Internet Explorer 10

btn.Text = "Find\n Transactions"; 

這在Internet Explorer 9上正常工作,但在Internet Explorer 10上無法正常工作。

我也嘗試了environment.newline變體,但是這並不奏效。

+0

[2線按鈕值]的可能重複(http://stackoverflow.com/questions/5053707/2-line-button-value) – walther 2014-12-03 12:56:21

+0

@walther對不起,我沒有具體說明ASP:按鈕? – 2014-12-03 13:03:50

+0

另一種方式,你可以嘗試使用'asp.net'' LinkBut​​ton',它被渲染爲'',你可以在裏面添加一些html。 – Bharadwaj 2014-12-03 13:12:42

回答

0

只是用這樣的:

Environment.NewLine(); 

像這樣:

btn.text = "some" + Environment.NewLine() + "text"; 
0

你可以嘗試vbCrLf,當然,如果你是在一個web applciation,嘗試<br />

0

嘗試使用

<asp:Button Text="Hello&#010;World" runat="server" ID="cmdHello" /> 
相關問題