I want to return the Model (data) of a controller in different formats (JavaScript/XML/JSON/HTML) using ActionFilter\'s. Here\'s where I\'m at so far:
The ActionFilt
Have you tried:
return Json(entries);
with a return type of JsonResult on the controller action?