IIS7 Configuration
Posted in Servers by Matthew Clements on 20 Jun, 2009
In IIS 6 and .Net you can alter the maximum allowable request length (inc file upload size) by using the MaxRequestLength setting in web.config.
In IIS 7 there are 2 ways of setting this (both need doing)
firstly:
<system.web>
<httpRuntime maxRequestLength="10000" /> ( 1000 KBytes)
and also:
<system.webServer><security><requestFiltering><requestLimits maxAllowedContentLength="10000000" /> (10000000 Bytes)
with both of these in place you should be able to handle nice big file uploads again

