I have an application in MVC ASP.NET and I have created a form with eight fields based on a model, my question is this:
If I want to use jQuery-AJAX-JSON in the click event of my submit button to send my model to the controller, it means then that it is not necessary to specify the action in the form created from the model:
@Html.BeginForm("accion", "controller", FormMethod.Post
since it is specified in:
$.ajax({
url: 'acción/controller'
});
??? thanks for the help