相思资源网 Design By www.200059.com
/// <summary>
/// 替换html中的特殊字符
/// </summary>
/// <param name="theString">需要进行替换的文本。</param>
/// <returns>替换完的文本。</returns>
public string HtmlEncode(string theString)
{
     theString=theString.Replace(">", "&gt;");
     theString=theString.Replace("<", "&lt;");
     theString=theString.Replace("  ", " &nbsp;");
     theString=theString.Replace("  ", " &nbsp;");
     theString=theString.Replace("\"", "&quot;");
     theString=theString.Replace("\'", "&#39;");
     theString=theString.Replace("\n", "<br/> ");
     return theString;
}

/// <summary>
/// 恢复html中的特殊字符
/// </summary>
/// <param name="theString">需要恢复的文本。</param>
/// <returns>恢复好的文本。</returns>
public string HtmlDiscode(string theString)
{
     theString=theString.Replace("&gt;", ">");
     theString=theString.Replace("&lt;", "<");
     theString=theString.Replace("&nbsp;"," ");
     theString=theString.Replace(" &nbsp;","  ");
     theString=theString.Replace("&quot;","\"");
     theString=theString.Replace("&#39;","\'");
     theString=theString.Replace("<br/> ","\n");
     return theString;
}
标签:
asp.net,替换,恢复,html,特殊

相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com

评论“asp.net替换和恢复html特殊字符”

暂无asp.net替换和恢复html特殊字符的评论...