Net Core教程

Asp.net 上传文件报“超过最大请求长度”黄页,解决方法随笔

本文主要是介绍Asp.net 上传文件报“超过最大请求长度”黄页,解决方法随笔,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

客户在软件使用过程中上传文件操作时反应报错,无法上传。查找原因是报“超过最大请求长度”和“超出json长度”错误,判断是base64加密后的路径太长和文件超过4M导致的。

做了三个地方参数配置来解决问题;

1、maxRequestLength

 

<system.web>
  <httpRuntime targetFramework="4.5" maxRequestLength="2097151" />
</system.web>

2、maxAllowedContentLength

<system.webServer>
  <security>
    <requestFiltering >
      <requestLimits maxAllowedContentLength="2147483647" ></requestLimits>
    </requestFiltering>
  </security>
</system.webServer>

3、maxJsonLength

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

 

这篇关于Asp.net 上传文件报“超过最大请求长度”黄页,解决方法随笔的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!