Allow upload of large files with ASP.net

Posted by Andrea on 2008-06-24 14:30
I found this post while googling a bit... and I'm reporting the just the essentials, for further reference.

<configuration>
  ...

  <system.web>
  ...
    <httpRuntime
      executionTimeout="240"

      maxRequestLength="16384"
      useFullyQualifiedRedirectUrl="false"
      minFreeThreads="8"
      minLocalRequestFreeThreads="4"
      appRequestQueueLimit="100"
      enableVersionHeader="true" />
  <system.web>
</configuration>


This permits the upload of a 16mb content.