|
/// 替換html中的特殊字符
/// </summary>
/// <param name="theString">需要進(jìn)行替換的文本。</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>
/// 恢復(fù)html中的特殊字符
/// </summary>
/// <param name="theString">需要恢復(fù)的文本。</param>
/// <returns>恢復(fù)好的文本。</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;
}
AspNet技術(shù):asp.net替換和恢復(fù)html特殊字符,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。