I am posting a json object to an ASP.Net MVC controller with C# code. To keep things simple in this example the object is just a car with make and model properties. Everythi
It is not a problem, make you request like:
"{\"Make\":\"Ford\",\"Model\":\"Mustang\", \"email\":\"xxx\", \"phone\":\"yyy\" }";
ASP.NET MVC Json binder should be smart enought to bing that correctly for method, like:
public JsonResult showdata(Car c, string email, string phone)