Using JSON.NET to return ActionResult [duplicate]

I found a similar stackoverflow question:
Json.Net And ActionResult

The answer there suggested using

return Content( converted, "application/json" );

That seems to work on my very simple page.

Leave a Comment