Maximum value of maxRequestLength?
If we are using IIS 7 and .Net Framework 4, what will be the maximum value of maxRequestLength
?
Maximum is 2097151, If you try set more error occurred.
These two settings worked for me to upload 1GB mp4 videos.
<system.web>
<httpRuntime maxRequestLength="2097152" requestLengthDiskThreshold="2097152" executionTimeout="240"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483648" />
</requestFiltering>
</security>
</system.webServer>