吴晓阳
发布于 2025-01-07 / 16 阅读
0

ASP.NET MVC 中超过最大请求长度的问题:

<configuration>
    <system.web>
        <httpRuntime maxRequestLength="102400" /> <!-- 设置为所需的大小,例如 100MB 对应的大小是 102400KB -->
    </system.web>
</configuration>
<system.webServer>
    <security>
        <requestFiltering>
            <requestLimits maxAllowedContentLength="10485760" /> <!-- 设置为所需的字节数,例如 10MB 对应的字节数为 10485760 -->
        </requestFiltering>
    </security>
</system.webServer>