I have this in the controller:
[HttpPost] public ActionResult Create(Student student) { //somecode..
and i want to submit this from
Use this, assuming you are using razor views:
@using (Ajax.BeginForm(new AjaxOptions(){ HttpMethod = "POST", Url = "your controller", OnComplete = "some client event" }) { This is a demo form. @Html.LabelFor(model => model.Name) @Html.TextBoxFor(model => model.Name) }