I'm developing a web site in ASP.NET MVC that uses jquery to control some plugins like spinner, toastr and others. My question is if I should call Action via jquery to validate the model and within Action make a call rest (which was built in api web ) and return the response in the javascript function.
As I worked a lot with mobile, most of the calls were made on the client, and in this case I see that the call is being made inside the controller , in this case, on the server.