实用技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > ASP.NET > 实用技巧 > asp.net textarea 换行

asp.net textarea换行函数代码

作者:

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;
}
阅读全文