Unescape an escaped url in c#

Viewed 15986

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

2 Answers
Related