2014/05/29 - [프로그램 자료/ASP.NET] - Ajax maxJsonLength Dotnet Framework 3.5 HotFix




비동기 통신시 쿼리 데이터가 많아 에러가 난다면,


web.config 에 아래 사항을 넣어주어면 된다.



<configuration>

  <system.web.extensions>

    <scripting>

      <webServices>

        <jsonSerialization maxJsonLength="2147483647"/>

      </webServices>

    </scripting>

  </system.web.extensions>

</configuration>

Posted by motolies
,