Hi Alan thanks for the answer...
Yes using $.post I can send a data Json string to the server. And also
using reques.vars.data I can recover that string inside the jsontest. In
order to check the transmision of data is correct, it is possible to save
that string in the myfile.txt. For the moment all is correct.
but how do I do to transform the reques.vars.data to a object again. I
would like to use it.
In Javascript I have
> var testObject = {};
> testObject.value1 = 'value1value!';
> testObject.value2 = 'value2value!';
>
How do I do to recover the testObject.value1 and the testObject.value2
from the reques.vars.data string:
{"testObject":{"value1":"value1value!","value2":"value2value!"}}?
>
>
>
--