I am trying to use jQuery ajax to update data from a web form (ASP.NET MVC). Some of the data comes from the text area, and although it is not a huge amount of data, it may be more than 2 KB.
It seems that jQuery ajax puts all the data in the query string, therefore, IIS rejects the url, hence breaking the call. Is it possible to add data to a POST request using the ajax model in jQuery and not have everything in the query string?
source
share