How do you return a serialized JSON object to the client side using ASP.NET MVC via an AJAX call?
|
6
|
|
|
|
|
|
From the controller you can just return a JsonResult:
The form of the Ajax call will depend on which library you're using, of course. Using jQuery it would be something like:
where the |
|||
|
|
Depending on your syntax preferences, the following also works:
|
|||
|
|
