asp.net textarea替换html特殊字符的代码
来源:爱站网时间:2022-06-14编辑:网友分享
asp.net textarea替换html特殊字符的代码是怎样的?带着这个问题,爱站技术频道小编整理了相关内容给大家,感兴趣的话千万不要错过这篇文章,下面就一起来看一看。
复制代码 代码如下:
/// <summary>
/// 替换html中的特殊字符
/// </summary>
/// <param name="theString">需要进行替换的文本。</param>
/// <returns>替换完的文本。</returns>
public string HtmlEncode(string theString)
{
theString=theString.Replace(">", ">");
theString=theString.Replace("<", "<");
theString=theString.Replace(" ", " ");
theString=theString.Replace("\"", """);
theString=theString.Replace("\'", "'");
theString=theString.Replace("\n", "<br/> ");
return theString;
}
asp.net textarea替换html特殊字符的代码内容不知道各位小伙伴都看明白了没有,在我们爱站技术频道网站有很多精彩的技术文章,喜欢可以来收藏下。