I'm getting the following exception:
Exception {"The parameter conversion from type 'System.Int32' to type 'System.Decimal' failed because no type converter can convert between these types."} System.Exception {System.InvalidOperationException}
This is after I use JQuery Ajax post to post the json back to the controller. MVC3 is binding the JSON to the model correctly as I can see all the data in a watch, however the ModelState has this error.
The View has a single decimal field and a textbox which holds a number. I get this error even when the textbox has an integer value.
Any ideas as to why this is failing?