///
/// 替换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;
}



