serialization-maxJsonLength web.config错误

时间:2011-03-14 15:27:51

标签: asp.net web-services json web-config

序列化列表时出现问题<> c#对象。

当我通过.ajax调用web服务时,有一个错误说长度已经超出了..

为了避免这个错误,我通过在下面的开头添加我的web.config来改变:

       <configuration>

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

现在我在启动asp.net应用程序时遇到错误  “system.web.extensions unknown”?

1 个答案:

答案 0 :(得分:0)

  <system.web.extensions>
    <scripting>
      <scriptResourceHandler enableCompression="true" enableCaching="true"/>
      <webServices>
        <jsonSerialization maxJsonLength="50000000"/>
      </webServices>
    </scripting>
  </system.web.extensions>

这对我有用。标签订单错误。