Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有ASP.NET Textbox控制权。它的Multiline属性设置为 true,从而有效地使其成为 HTMLtextarea元素。
ASP.NET Textbox
Multiline
textarea
文本框的文本设置为,
Text="New\r\nLine\r\nRequired"
你可以猜到,我试图在单独的行中显示文本中的单词。但是,文本完全按照输入的方式显示。我究竟做错了什么?请帮忙。
尝试这个
TextBox1.Text.Replace(Environment.NewLine, "<br />")