How can I decode the escape URL string in C #?

Possible duplicate:
how to decode url parameter using C #

I want to change all of these% 20 ect. on spaces ect.

+3
source share
2 answers

Using

Server.UrlDecode(string);
+3
source

Source: https://habr.com/ru/post/1766511/


All Articles