I can't get data from AJAX post request in C# controller – Asp.net
I want to send data from javascript to c# controller using ajax, but when the Add method in my controller is called all its arguments are null AJAX: function addRequest(name, price, about){ $.ajax({ url: 'Services/Add', type: 'POST', contentType: "application/json; charset=utf-8",…