把输入文字时的TextBox的TextMode设为MultiLine,在前面录入文字的时候,就可以换行啦。
在后台读TextBox的数据时,用str = this.TextBox1.Text.Replace("\r","<br>");然后再在前台输出来,就可以换行了。