Unescape an escaped url in c#
问题 I have urls which is escaped in this form: http://www.someurl.com/profile.php?mode=register&agreed=true I want to convert it to unescaped form http://www.someurl.com/profile.php?mode=register&agreed=true is this the same thing as escapped html? how do i do this? thanks 回答1: & is an HTML entity and is used when text is encoded into HTML because you have to "escape" the & that has a special meaning in HTML. Apparently, this escaping mechanism was used on the URL presumably because it is used in