Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: File upload limit in IIS  (Read 3279 times)

0 Members and 1 Guest are viewing this topic.

dustin

  • Guest
File upload limit in IIS
« on: May 25, 2014, 02:52:19 pm »
We can control the maximum upload size for our site by pasting the below code to web.config file.

===
<system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="629145600"/>
            </requestFiltering>
        </security>
</system.webServer>
===
maxAllowedContentLength is in BYTES not kilobytes.