标签: c# javascript asp.net asp.net-mvc
我试过了:
string decodedHtml = HttpUtility.HtmlDecode(html);
其中html是编码的html。看起来这根本不会改变字符串。 html仍然是编码的。
答案 0 :(得分:64)
string s = System.Uri.UnescapeDataString(html);
答案 1 :(得分:2)
认为您可以使用此代码。
HttpContext.Current.Server.UrlDecode(html)