Avoiding upload of files larger than 10mb - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T03:33:19Zhttp://stackoverflow.com/feeds/question/533039http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/533039/avoiding-upload-of-files-larger-than-10mb4Avoiding upload of files larger than 10mbBruno2009-02-10T16:27:43Z2009-07-28T09:28:10Z
<p>Is there any way (probably a module) that can make IIS7 rejects a post with a file larger than 10mb?</p>
<p>My ASP.NET application has an upload page, and the file cannot be larger than 10mb, I believe that I can check the size of the file only after everything was already sent to the server.</p>
<p>An IIS7 module would be the right choice for this, anyone knows about one?</p>
http://stackoverflow.com/questions/533039/avoiding-upload-of-files-larger-than-10mb/533052#5330526Answer by cgreeno for Avoiding upload of files larger than 10mbcgreeno2009-02-10T16:30:05Z2009-07-28T09:28:10Z<p>You can set the limit in the Web.Config</p>
<pre><code><system.web>
<httpRuntime maxRequestLength="xxxxx" executionTimeout="xx"/>
</system.web>
</code></pre>
<p><em>sidenote:</em> </p>
<p>IIS7 will reject any file larger then 30 meg by default you can increase this by adding the following code</p>
<pre><code><security>
<requestFiltering>
<requestLimits maxAllowedContentLength=”XXXXXX″ />
</requestFiltering>
</security>
</code></pre>
<p>If you are looking to get the content size before an upload you should be able to use the HTTP method HEAD to retrieve Content-Length.</p>
<p><a href="http://www.eggheadcafe.com/tutorials/aspnet/2c13cafc-be1c-4dd8-9129-f82f59991517/the-lowly-http-head-reque.aspx" rel="nofollow">Implementation</a> </p>