mvc 下json超过限制,上传excel大小限制

json超过限制

解决方案1:config中添加节点  控制序列化长度

<webServices>

<jsonSerialization maxJsonLength="102400"/>
 </webServices>

解决方案2:直接传字符串

excel大小限制

      
  <configuration>       
        <system.web>       
                    <httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
        </system.web>       
  <configuration>   
 







posted @ 2018-01-14 12:20  周捷Jay  阅读(190)  评论(0编辑  收藏  举报