asp.net替换和恢复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("/'", "'");
theString=theString.Replace("/n", "<br/> ");
return theString;
}
/// 恢复html中的特殊字符
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;
}
asp.net替换和恢复html特殊字符
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;
}
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;
}