I have an issue with IE, when sending a querystring with special characters in it as for instance with the “Ø” (name=bjørn) in asp.net will be somehow encoded into “name=bj%ufffdrn”, “ø” gets translated into “%ufff”
I would like to know, how to decode this into the right charaters.
This only happens with IE not with FF, Ch or opera.
Any ideas?
Thanks!
Firstly, you shouldn’t be using htmlspecialchars to encode a URL. In PHP use
urlencode(see https://www.php.net/manual/en/function.urlencode.php). Then ASP.NET should decode the URL parameters for you.