ASP标签替换新行

时间:2016-06-10 21:30:17

标签: c# asp.net label newline

您好我的项目中有一个标签,它从数据库中获取文本,但由于标签不支持多行方法,我需要将新行转换为
我尝试使用TweetLabel.Text.Replace(Environment.NewLine, "<br />") 但它不起作用。
我会添加显示问题的图像。 Source code from browser

Render of it

Database record

1 个答案:

答案 0 :(得分:0)

String.Replace()返回一个新字符串。它不会更改您放入方法的字符串。因此TweetLabel.Text.Replace()本身就无能为力。您需要将其更改为:

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