Skip to content

Instantly share code, notes, and snippets.

@oclockvn
Created January 20, 2017 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oclockvn/64fe06843c431d7dcf9013a1db28f065 to your computer and use it in GitHub Desktop.
Save oclockvn/64fe06843c431d7dcf9013a1db28f065 to your computer and use it in GitHub Desktop.
.net mvc json result with anonymous type c#
public ActionResult JsonResponse()
{
var resp = new {
code = 1,
msg = "success",
data = new List<int>{1, 2, 3}
};
return Json(resp, AjaxRequestBehavior.AllowGet);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment