.NET MVC – JavaScriptSerializer string exceeds the maxJsonLength – JSON POST
Background I recently encountered a maxJsonLength error when large JSON payloads were sent from the Frontend to the Backend. By debugging, I could see that the controller action was not entered, suggesting the issue was with the JSON deserialization to the desired object failing when trying to execute it. Difficulties When data is sent from …
.NET MVC – JavaScriptSerializer string exceeds the maxJsonLength – JSON POST Read More »