Sunday 12 May 2013

Setting for set max json string length in web config

Use this Json sting setting in web.config file.

<system.web.extensions>
    <scripting>
      <webServices>
        <jsonSerialization maxJsonLength="999999999">
        </jsonSerialization>
      </webServices>
    </scripting>
  </system.web.extensions>

No comments:

Post a Comment