I have this in the controller:
[HttpPost]
public ActionResult Create(Student student)
{ //somecode..
and i want to submit this from
Well it would look something like (that's without looking at your view bindings):
// serialize your form into JSON - maybe you have a different method of doing it
var serializedForm = $("#YourFormId").serialize();
// post it to the server
$.post("/student/create", serializedForm)
.done(function (response) {
// it's done
})
.fail(function (xhr, status, error) {
// something bad happened
});