ajax上传大附件报错:413 Request Entity Too Large

时间:2021-07-20 16:41:06   收藏:0   阅读:26

Web.config添加如下代码:

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

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

    ...
</system.webServer>

原文:https://www.cnblogs.com/SweetyGirl/p/15034733.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!