2015年6月18日 星期四

WEB METHOD JSON MAX LENGTH

使用JSON.NET來轉換物件為JSON
STRING出來了但是WEBMETHOD丟出去時說太大

在WEB.CONFIG加入此設定值就可以提高上限了


<configuration>
  <system .web.extensions="">
    <scripting>
      <webservices>
        <jsonserialization maxjsonlength="2147483644">
      </jsonserialization></webservices>
    </scripting>
  </system>
</configuration>

沒有留言:

張貼留言