I have this in the controller:
[HttpPost]
public ActionResult Create(Student student)
{ //somecode..
and i want to submit this from:
<form method="post" action="/student/create">
<!-- the from contents-->
how to submit this from using Ajax call i need the JQuery ajax call that lets this form submitted.
and i want to make sure about datatype , thanks