JSON Limited to 1180 Characters
问题 I have a simple JavaScript JSON request which stringify's an object to send via a JSON request to my C# Web server. Whenever the string returned by stringy is over 1180 characters, the WebMethod is not called on the server. From my understanding, there is no limit on how much string data the client can send via JSON. I understand that the limitation is on the server end, trying to accept the paramaterized request. Is there somewhere in the web.config that I can increase this limit of 1180? My