Hello . Iam using synchronous ajax call to a webmethod to return large side of data for example list of 1000 Record. and when i get the result its throw an error 'Web.Script.Services.RestHandler.ExecuteWebServiceCall 500
(Internal Server Error)'
i tried to recieve these data into a sessionStorage. But still have the same problem. i tried to increase size of Json into webconfig but no way.
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="300000" />
</webServices>
</scripting>
</system.web.extensions>
So , help me how can i solve this problem.?
Go to the complete details ...