I have 2 questions:
What is the difference between JSONResult and ActionResult? When to use JSONResult in MVC?
What is the difference between JSONResult and ActionResult?
When to use JSONResult in MVC?
ActionResult is an abstract class .JsonResult is subtype of ActionResult. So we can return json content in both types.
ActionResult
JsonResult