I have tried with following code but shows null in the controller side..
view:
There is problem with data that you are sending to server. you don't need to JSON.stringify 2 times.
function getme() {
debugger;
var emp = [
{ empid: 1, name: 'sasi' },
{ empid: 2, name: 'sathish' }
];
emp = JSON.stringify({ emp: emp });//make json string once
$.ajax({
contentType: 'application/json; charset=utf-8',
dataType: 'json',
type: 'POST',
url: '/Home/getemplist',
data: emp //send it to server
});
}