Hi all,
I have written a simple, manual NetWebPage using NetTalk which does some database operations and then returns the data as a straight XML packet. eg:-
Loop recordptr = 1 to Records(somefilename)
Get(somefilename, recordptr)
packet = clip(packet) & '<tr>' & rec:somefieldsinhtmlformat & '</tr>'
End
With smaller data sets, the returned data comes up beautifully. Note: We are using Prototype to do an Ajax.Updater call to this routine and embed the returned data into the calling web page table.
The problem is with larger data sets, the data gets 'chopped' after so many lines. I am assuming this is because we are reaching the limit of what the 'packet' variable can hold.
The question is, how can we break this up into multiple packets in the procedure and return the data piecemeal?
Thanks,
Devan