MVC 5 Controlador Retornar o valor JSON para visualizar
// mvc controller
[HttpPost]
public ActionResult IndChecking(string dta, string isChk)
{
/////
return this.Json (new { Data = result, cKey = ContainerKey }, JsonRequestBehavior.AllowGet);
}
// view
success: function (result) {
alert(result.cKey);
}
BlackSwan