jQWidgets Forums

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Internal Server Error Internal Server Error #68918

    NickBurns
    Participant

    I found the issue. It was the size of the JSON data being returned and asp.net defaults to basically 100kb. I added the below code to my web.config and now it works!

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

    Thanks microsoft for the worthless error message “Internal Server Error”.

Viewing 1 post (of 1 total)