如何使用encodeURIComponent()解码在JS中编码的HTML?

时间:2011-05-16 20:17:08

标签: c# javascript asp.net asp.net-mvc

我试过了:

string decodedHtml = HttpUtility.HtmlDecode(html);

其中html是编码的html。看起来这根本不会改变字符串。 html仍然是编码的。

2 个答案:

答案 0 :(得分:64)

string s = System.Uri.UnescapeDataString(html);

答案 1 :(得分:2)

认为您可以使用此代码。

HttpContext.Current.Server.UrlDecode(html)