使用C#从String中删除所有HTML代码

时间:2013-02-12 10:15:13

标签: c# asp.net strip-tags

我目前正在将一些数据从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 &raquo;</a></div>";

我想删除其中所有HTML的正文值(+ Convert.ToString(reader2["body"]).Substring(0, 220) +)。

如何使用C#实现此目的?

通常使用PHP,我会使用striptags

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:3)