Skip to content

Instantly share code, notes, and snippets.

@lnmunhoz
Last active December 20, 2015 04:59
Show Gist options
  • Save lnmunhoz/6074757 to your computer and use it in GitHub Desktop.
Save lnmunhoz/6074757 to your computer and use it in GitHub Desktop.
Send an array to Controller in ASP.NET MVC
$.ajaxSettings.traditional = true; // <-- Important
$('#btn').click(function () {
var array = [];
var url = '/Controller/Action';
$.post(url, { array : array });
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment