In MVC 4, how do you pass a JavaScript array in the View to a function in the Controller with AJAX?
This doesn\'t seem the work:
$.ajax( {
You should use on your controller:
public string SaveTable(object[] function_param) { //some code }
Should do the work, it's for future users.