Hello Sir,
I am trying to pass model data from view to controller but it's not working. Infact it's not firing the action in controller.
Please help and guide me.
Thanks
My Code like this:
#MODEL
public class model{
report objReport = new report();
model = new model()
{
objReport = new report();
}
}
public class reoprt{
public int reportID {get;set;}
}
#CONTROLLER
public string save(model objModel)
{
return "done";
}
#AJAX CALL
var objDailyReport = $("#CNform").serialize();
$.ajax({
type: "POST",
url: "/dailyreportingregister/Save",
data: objDailyReport,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (r) {
alert("done");
}
});