Date:  11/08/2007 03:04:21 AM Msg ID:  003576
From:  jc clerc Thread:  003555
Subject:  Re: AJAX and diacriticals characters
Thanks a lot, it is for sure easier than the option I had found before.
 
Sent by FoxWeb Support on 11/06/2007 09:37:43 PM:
I did some additional research on this issue.  As it turns out, VFP does not support Unicode, so you need to convert your string to UTF-8 before sending it to the browser.  You can do so with the STRCONV function.  The last line of ZipSearchAjax.prg must be changed to:
 
Response.Write(STRCONV(fwJSON.Write(AjaxResponse),9))

FoxWeb Support Team
support@foxweb.com email
Sent by Fernando Medan on 10/31/2007 04:30:03 AM:
There is some way to use the diacriticals characters (ñ, á, é, etc.) with AJAX?
Thanks.