I am getting null values in the controller. Not sure what am I am missing.
I have a grid where I have a list of guests (with name & email) where user select gues
If you have the liberty of using a plugin, try jQuery-JSON:
var guests = new Array(); // push stuff into the array $.ajax({ type: "POST", url: GetURL(), data: $.toJSON(guests), dataType: "json", success: function (res) { //do something } );