we have a wep application, when using chinese words in GET query string can not get correct parameter on server side but in POST data we can get correct parameter on server side. server is Tomcat. on server side we use GBK encoding to get HTTP parameters if I convert encoding of parameters in in query string from ISO8859-1 to GBK it's right but the problem is there are too many JSP pages to change.so I wanna if there is anyway to configure IE to send query string using GBK but iso8859-1. I tried to uncheck "send UTF-8 url" option of IE ,it did not work for me...
PLZ HELP SORRY FOR MY BAD ENGLISH!
//iPostChange int 0:ISO8859_1,1:NoChange,2:ISO8859_1->GBK,3:GBK->ISO8859_1,5:GBK
String sFlowNo = DataConvert.toRealString(iPostChange,(String)CurComp.getParameter("FlowNo"));
iPostChange is used to set encoding converting, default is 1 which means dont change . FlowNo is supposed to be some Chinese words, if FlowNo is passed to server in url(HTTP GET query string)with default iPostChange I cant get right Chinese string, but if FlowNo is passed to server in a Form(using POST method)I can get right Chinese string.
is that IE8 did not support using Chinese characters in URL ?