Preventing browser timeout on large file uploads - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T10:16:57Z http://stackoverflow.com/feeds/question/223748 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/223748/preventing-browser-timeout-on-large-file-uploads 1 Preventing browser timeout on large file uploads FlySwat 2008-10-21T22:22:39Z 2008-12-02T10:37:41Z <p>I have a nice little file upload control I wrote for ASP.NET webforms that utilizes an IFrame and ASP.NET AJAX.</p> <p>However, on large uploads, the browser times out before it can finish posting the form.</p> <p>Is there a way I can increase this?</p> <p>I'm not really interesting in alternative solutions, so don't suggest changing the entire thing out please. It works good for &lt;5 meg uploads, I'd just like to get it up to about 8mb.</p> <p>EDIT: Setting the timeout in Page_Load didn't appear to change anything.</p> http://stackoverflow.com/questions/223748/preventing-browser-timeout-on-large-file-uploads/223778#223778 1 Answer by JasonS for Preventing browser timeout on large file uploads JasonS 2008-10-21T22:30:21Z 2008-10-21T22:30:21Z <p>In Page_Load, set Server.ScriptTimeout to a value that works for you. Measured in seconds I believe.</p> http://stackoverflow.com/questions/223748/preventing-browser-timeout-on-large-file-uploads/230916#230916 2 Answer by Godeke for Preventing browser timeout on large file uploads Godeke 2008-10-23T18:37:16Z 2008-10-23T18:42:34Z <p>You need to update a metabase setting on IIS6 and later. The key is " AspMaxRequestEntityAllowed" and is expressed in bytes. I highly recommend the Metabase Explorer to make the change, wading through the XML at %systemroot%\system32\inetserv\metabase.xml is possible though.</p> <p>Metabase Explorer: <a href="http://support.microsoft.com/kb/840671" rel="nofollow">http://support.microsoft.com/kb/840671</a></p> <p>Hmmm, perhaps I'm barking up the wrong tree... you wouldn't be doing 5 MB files if that wasn't already adjusted. </p> <p>Another stab at it: see your web.config:</p> <pre><code>&lt;system.web&gt; &lt;httpRuntime maxRequestLength="102400" executionTimeout="360"/&gt; &lt;/system.web&gt; </code></pre> <p>Max request length is in bytes and execution timeout is in seconds.</p> http://stackoverflow.com/questions/223748/preventing-browser-timeout-on-large-file-uploads/230936#230936 1 Answer by Brian Schmitt for Preventing browser timeout on large file uploads Brian Schmitt 2008-10-23T18:43:49Z 2008-10-23T18:43:49Z <p>I think you may need to adjust the <a href="http://msdn.microsoft.com/en-us/library/system.web.configuration.httpruntimesection.maxrequestlength.aspx" rel="nofollow">MaxRequestLength</a></p> <p>Its in the Web.config I think by default its 4megs.</p> <p>The following would allow ~10 meg file:</p> <pre><code>&lt;httpRuntime maxRequestLength="10240" /&gt; </code></pre> http://stackoverflow.com/questions/223748/preventing-browser-timeout-on-large-file-uploads/333594#333594 0 Answer by jlchereau for Preventing browser timeout on large file uploads jlchereau 2008-12-02T10:37:41Z 2008-12-02T10:37:41Z <p>Check the code of <a href="http://www.codeplex.com/VelodocXP" rel="nofollow">Velodoc XP Edition</a>. It includes an upload streaming module, a resumable download handler and ASP.NET upload controls based on ASP.NET Ajax extensions and it is all open source.</p> <p>For more information check also <a href="http://www.memba.com" rel="nofollow">www.memba.com</a> and <a href="http://www.velodoc.com" rel="nofollow">www.velodoc.com</a>.</p>