Skip to content

Instantly share code, notes, and snippets.

@nikmd23
Created February 29, 2012 22:19
Show Gist options
  • Save nikmd23/1944913 to your computer and use it in GitHub Desktop.
Save nikmd23/1944913 to your computer and use it in GitHub Desktop.
Use JsonpResult
public ActionResult ActionMethod()
{
var data = GetDataSomehow();
return new JsonpResult(data);
//constructor overload for overriding callback function
//return new JsonpResult(data, "callback function");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment