I'm trying to debug this, and its really not easy because I'm lacking a lot of knowledge.
How do I put this into a memo field?
I can't start the FoxPro debugger and try and figure out where your program is going because I don't have access to that.
I want something like
replace field.memo with oresponse.results -- but don't know the syntax because this is web stuff.
oResponse.ContentType = "application/json;charset=utf-8"
oResponse.Write(oJSON.stringify('SearchResults'))
oResponse.Flush
These lines are creating a string, that is sent to the JSON parser and brought into my program.How do I put this into a memo field?
I can't start the FoxPro debugger and try and figure out where your program is going because I don't have access to that.
I want something like
replace field.memo with oresponse.results -- but don't know the syntax because this is web stuff.