Tell us what is JsonResultType in MVC?

Submitted by: Muhammad
Action methods on controllers return JsonResult (JavaScript Object Notation result) that can be used in an AJAX application. This class is inherited from the "ActionResult" abstract class. Here Json is provided one argument which must be serializable. The JSON result object that serializes the specified object to JSON format.

public JsonResult JsonResultTest()
{
return Json("Hello Boos!");
}
Submitted by: Muhammad

Read Online MVC Developer Job Interview Questions And Answers