Hi,
I have some problems on handling Chinese Character.
I pass Chinese words to CFC and then do the SELECT search in DB. However, I find it cannot find Chinese words correctly.
When I try to prompt ( alert(#trim(URLDecode(search_tenderee_name))#) ) the wordings retrieved in CFC, it shows me incorrectly word.
I use the following method to call CFC:
ColdFusion.navigate('cfc/control.cfc?method=loadNameListSelection&search_name='+escape(doc ument.getElementById('search').value),'tableList');
Can anyone help me to solve this problem?
P.S. I have also tried:
ColdFusion.navigate('cfc/control.cfc?method=loadNameListSelection&search_name='+document.g etElementById('search').value,'tableList');
alert(#trim(search_tenderee_name)#)
It also cannot prompt me the correct Chinese Character.