asp.net t来源gao($daima.com搞@代@#码网extarea换行函数,注意就是替换html中的特殊字符
代码如下:
///
/// 替换html中的特殊字符
///
///
/// 需要进行替换的文本。
/// 替换完的文本。
public string HtmlEncode(string theString)
{
theString=theString.Replace(“>”, “>”);
theString=theString.Replace(“<", "<");
theString=theString.Replace(” “, ” “);
theString=theString.Replace(“\””, “””);
theString=theString.Replace(“\'”, “‘”);
theString=theString.Replace(“\n”, “
“);
return theString;
}
以上就是asp.net textarea换行函数代码的详细内容,更多请关注gaodaima搞代码网其它相关文章!