首页 > 开发 > .Net > 正文

asp.net textarea换行函数代码

2020-04-24 22:09:16
字体:
来源:转载
供稿:网友
代码如下:
/// <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;
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表