|
/// 替換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;
}
AspNet技術:asp.net替換和恢復html特殊字符,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。