当前位置: 编程技术>.net/c#/asp.net
C#中HTML字符转换函数分享
来源: 互联网 发布时间:2014-08-30
本文导语: 在ASP.Net中经常会从网面中取数据或更新网页的显示。因为HTML中有些特殊字符如, &等,显示实际值不一致,造成保存到数据库再取出来时会不一样。 1.替换html中的特殊字符 代码如下: /// ///替换html中的特殊字符 /// ///需要...
在ASP.Net中经常会从网面中取数据或更新网页的显示。因为HTML中有些特殊字符如, &等,显示实际值不一致,造成保存到数据库再取出来时会不一样。
1.替换html中的特殊字符
代码如下:
///
///替换html中的特殊字符
///
///需要进行替换的文本。
///替换完的文本。
public static string HtmlEncode(string theString)
{
theString=theString.Replace(">",">");
theString=theString.Replace("",">");
theString=theString.Replace("
///替换html中的特殊字符
///
///需要进行替换的文本。
///替换完的文本。
public static string HtmlEncode(string theString)
{
theString=theString.Replace(">",">");
theString=theString.Replace("",">");
theString=theString.Replace("