Hi All,
I am working on windows 2000 server, cfmx 6.1
I have to encod an url parameter, i do that with the
javascript function "encodeURIComponent()" because sometimes the
sign "+" is in the string.
That works fine.
The problem is with latin characters non ascii:
myString = "Acteur / Métier";
url = "mysite?maVar="+encodeURIComponent(myString);
Server Side:
I have tried
<cfset theVar = url.maVar>
<cfset theVar = URLDecode(url.maVar)>
...
but each time the result is the same theVar = "Acteur /
Métier"
Does any one know how to solv this?