How can i send a JSON object to a webmethod using jQuery?
|
Please refer to this article by Dave Ward. It is a complete tutorial on doing this stuff. Also you will find there other great jquery/ASP.net stuff. EDIT:- Dave is calling method without any arguments, you can replace empty data property with actual data you want to send:
|
|||||||||||||
|
|
WebMethods expect a string containing JSON that will be parsed on the server-side, I use the
I recommend you to include the json2.js parser in your pages, to have the JSON.stringify function cross-browser available. |
|||
|
|
|
Another library you can use is the
|
|||||
|
|
The most convenient solutions I've seen simplify this by using the open-source JSON2.js library to parse and 'stringify' complex object data. These two excellent articles go into detail:
The second article might be especially relevant for you, though it calls a web service method with the following signature ...
... it demonstrates how to use the JSON2.js library to render a
Just use your webmethod URL in lieu of the web service's. |
|||
|
|
|
You'd need to post it using Ajax and accept the incoming string on the webmethod. Then you'd need to use the JavaScript deserializer to convert it into an object on the server side. |
|||
|
|
JSON.stringify does help, but:
|
|||
|
|