当前位置:Gxlcms > asp.net > asp.net textarea换行函数代码

asp.net textarea换行函数代码

时间:2021-07-01 10:21:17 帮助过:7人阅读

代码如下:
/// <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;
}

人气教程排行