I am working on jquery and when i have got 287 rows in jquery ajax then it data doesn't show on web page. When number of row is 250 then it is show in aspx web page. SO how can i solve this problems ? What is maximum data can pass in ajax and show on aspx web page ?
Any help will be appreciate. Thank you in advance.
Local CodersPosted Sep 25, 2014, 12:15 PM
Most probably you have exceeded MaxJsonLength, by default it is 102400 characters and your string is bigger. You can increase this limit in web.config:
what is maximum size for the jsonSerialization? 2147483647
<system.web.extensions>
<jsonSerialization maxJsonLength="50000000"/>
webServices>
scripting>
system.web.extensions>
configuration>