首页 > 代码库 > ASP------字符串与HTML格式相互转换

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

代码:

1.字符串转HTML

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

2.HTML转字符串

HttpUtility.HtmlEncode(" is ")
或者
Server.UrlEncode("<p>is</p>")

 

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