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

json超过限制

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

<webServices>

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

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

excel大小限制

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







原文地址:https://www.cnblogs.com/jayblog/p/8282933.html