ASP------字符串与HTML格式相互转换

代码:

1.字符串转HTML

HttpUtility.HtmlDecode(" is ")
或者
Server.UrlDecode(" is ")

2.HTML转字符串

HttpUtility.HtmlEncode(" is ")
或者
Server.UrlEncode("<p>is</p>")
原文地址:https://www.cnblogs.com/tianhengblogs/p/7061955.html