0

我在 asp.net 中发表评论为

Hi
How are
You

但在发布后它出现在一行中,例如:

Hi How are You

我想避免这种情况并显示用户以以下格式发布的文本:

Hi
How are
You

我怎样才能做到这一点?谢谢

4

1 回答 1

0

您可以用中断标记替换“\n”。

var comments = txtComments.Text.Replace("\n","<br/>");
于 2013-07-05T06:10:08.830 回答