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(">", "&gt;");
theString=theString.Replace("<", "&lt;");
theString=theString.Replace(" ", " &nbsp;");
theString=theString.Replace("\"", "&quot;");
theString=theString.Replace("\'", "&#39;");
theString=theString.Replace("\n", "<br/> ");
return theString;
}

asp.net textarea替换html特殊字符的代码内容不知道各位小伙伴都看明白了没有,在我们爱站技术频道网站有很多精彩的技术文章,喜欢可以来收藏下。

上一篇:asp.net点击按钮后呈现变灰怎么处理

下一篇:asp.net(C#) Access数据操作类如何实现代码

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载