asp.net替换和恢复html特殊字符
更新时间:2008年05月10日 21:41:29 作者:
替换html中的特殊字符需要进行替换的文本。替换完的文本。
/// <summary>
/// 替换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;
}
/// 替换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;
}
您可能感兴趣的文章:
- ASP.NET对HTML页面元素进行权限控制(一)
- ASP.NET对HTML页面元素进行权限控制(二)
- ASP.NET对HTML页面元素进行权限控制(三)
- Asp.net动态生成html页面的方法分享
- Asp.net 动态加载用户自定义控件,并转换成HTML代码
- asp.net(C#) 动态添加非ASP的标准html控件(如添加Script标签)
- 利用ASP.NET技术动态生成HTML页面
- asp.net 图片验证码的HtmlHelper
- ASP.NET 页面刷新的实现方法(包括html,js)
- asp.net HTML文件上传标签
- asp.net下URL网址重写成.html格式、RSS、OPML的知识总结
- asp.net正则表达式删除指定的HTML标签的代码
- ASP.NET动态增加HTML元素的方法实例小结
相关文章
ASP.NET Core优雅的在开发环境保存机密(User Secrets)
这篇文章主要为大家详细介绍了ASP.NET Core如何优雅的在开发环境保存机密User Secrets,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-05-05asp.net 通过UserAgent判断智能设备(Android,IOS)
搜集了比较全的 智能设备 的 Agent,然后又写了程序,需要的朋友可以参考下2011-10-10Linux服务器下利用Docker部署.net Core项目的全过程
这篇文章主要给大家介绍了关于在Linux服务器下利用Docker部署.net Core项目的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者使用.net Core具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧2019-07-07
最新评论