Avoiding upload of files larger than 10mb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T03:33:19Z http://stackoverflow.com/feeds/question/533039 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/533039/avoiding-upload-of-files-larger-than-10mb 4 Avoiding upload of files larger than 10mb Bruno 2009-02-10T16:27:43Z 2009-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#533052 6 Answer by cgreeno for Avoiding upload of files larger than 10mb cgreeno 2009-02-10T16:30:05Z 2009-07-28T09:28:10Z <p>You can set the limit in the Web.Config</p> <pre><code>&lt;system.web&gt; &lt;httpRuntime maxRequestLength="xxxxx" executionTimeout="xx"/&gt; &lt;/system.web&gt; </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>&lt;security&gt; &lt;requestFiltering&gt; &lt;requestLimits maxAllowedContentLength=”XXXXXX″ /&gt; &lt;/requestFiltering&gt; &lt;/security&gt; </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>