I have this in the controller:
[HttpPost] public ActionResult Create(Student student) { //somecode..
and i want to submit this from
try this
var form = $('#formId'); $.ajax({ cache: false, async: true, type: "POST", url: form.attr('action'), data: form.serialize(), success: function (data) { alert(data); } });