Numbers and Percentage in string C # MVC

2

My string is not coming with strange characters, it's coming with numbers and percentage. Example:

"[email protected]" 

"teste%40test.com"

or

"fictício" 

"fict%C3%ADcio"
    
asked by anonymous 11.05.2016 / 03:17

1 answer

0

I was able to resolve using

Server.UrlDecode(minhaString);
    
13.05.2016 / 03:27