您的位置:首页 > 编程语言 > ASP

asp.net替换和恢复html特殊字符

2008-05-10 21:41 726 查看
/// <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("\'", "'");
     theString=theString.Replace("\n", "<br/> ");
     return theString;
}

/// <summary>
/// 恢复html中的特殊字符
/// </summary>
/// <param name="theString">需要恢复的文本。</param>
/// <returns>恢复好的文本。</returns>
public string HtmlDiscode(string theString)
{
     theString=theString.Replace(">", ">");
     theString=theString.Replace("<", "<");
     theString=theString.Replace(" "," ");
     theString=theString.Replace("  ","  ");
     theString=theString.Replace(""","\"");
     theString=theString.Replace("'","\'");
     theString=theString.Replace("<br/> ","\n");
     return theString;
}

您可能感兴趣的文章:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息