[jQuery] Passing JSON objects to a Web Method
Hello,
How do I pass a JSON object to a server side web method as a
parameter?
For example:
I have the following JSON object.
var person = { "firstName" : "John",
"lastName" : "Doe",
"age" : 23 };
and I want to pass this object in the data: "{}" block.
Is it possible?
Regards,
Mahesh.