Home » Applications » Maximum request length exceeded

Maximum request length exceeded

Having issues uploading files? Getting message like “maximum request length exceeded?” The solution to this is simple; add the following code to your configuration file:


<configuration>
    <system.web>
        <httpRuntime maxRequestLength="35000" />
    </system.web>
</configuration>

* set the maxRequestLength to whatever your need might be.