AJAX

I use the PRO version.



Trying Ajax call with postSync I face the following problem: passed parameters separated with &, are translated as: amp;param1 amp;param2



Thnks in advance,

John

The component doesn’t apply any additional escaping for the post data provided as part of command, so if you are using

dhtmlxAjax.postSync(url,“a=1&b=2&c=3”)

then component send the second parameter as is ( which will be parsed as 3 post parameters on server side )

Please be sure that incoming parameters are correct, and you has not any custom pre-processing on server side.

OK, thanks