我目前正在将一些数据从 SQL Server 数据库中提取到 C# asp.net 页面中。
我正在使用以下(部分)代码来输出存储在我的body
列中的 HTML 文本:
TextLabel.Text += "<div class=\"newsEntry\">" +
Convert.ToString(reader2["body"]).Substring(0, 220) +
"...<a href='entry.aspx?ID=" + reader2["ID"] +
"' title=\"Read More about " + reader2["Title"] +
"\">Read More »</a></div>";
我想去掉其中+ Convert.ToString(reader2["body"]).Substring(0, 220) +
所有 HTML 的正文值()。
如何使用 C# 实现这一目标?
通常使用 PHP,我会使用striptags
.
非常感谢您的帮助。