In my windows form, i have a webbrowser control used as "file explorer".
I use webbrowser.url.localpath to get the actual path of selected folder.
I want to decode url because special characters return bad(ex : %C9 instead of É)
The function webutility.urldecode doesn't works for me !!!
Dim string1 As String = WebUtility.UrlDecode(WebBrowser1.Url.LocalPath)
'return : \\path\D�g�ts des eaux instead of \\path\Dégâts des eaux
Help me please !!!!
thks