[Proto-Scripty] Re: passing a recordset when using AJAX

2010-02-03 Thread Diodeus
Yes, you can use XML, which can be hundreds of times slower on the client to parse, or you can make your own customer structured string blob than you then parse on the client. Alternately you can verbosely declare JavaScript arrays from strings built up in your ASP code (person = [];person[0] =

[Proto-Scripty] Re: passing a recordset when using AJAX

2010-02-03 Thread Fab
Thank you for you quick response! I will keep reading on JSON in that case. On Feb 3, 10:45 am, Diodeus diod...@gmail.com wrote: Yes, you can use XML, which can be hundreds of times slower on the client to parse, or you can make your own customer structured string blob than you then parse on