asp.net textarea换行函数代码
程序员文章站
2024-03-09 12:43:53
复制代码 代码如下:/// /// 替换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;
}
复制代码 代码如下:
/// <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;
}
上一篇: javaweb实战之商城项目开发(三)