Preventing browser timeout on large file uploads - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T10:16:57Zhttp://stackoverflow.com/feeds/question/223748http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/223748/preventing-browser-timeout-on-large-file-uploads1Preventing browser timeout on large file uploadsFlySwat2008-10-21T22:22:39Z2008-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 <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#2237781Answer by JasonS for Preventing browser timeout on large file uploadsJasonS2008-10-21T22:30:21Z2008-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#2309162Answer by Godeke for Preventing browser timeout on large file uploadsGodeke2008-10-23T18:37:16Z2008-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><system.web>
<httpRuntime maxRequestLength="102400" executionTimeout="360"/>
</system.web>
</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#2309361Answer by Brian Schmitt for Preventing browser timeout on large file uploadsBrian Schmitt2008-10-23T18:43:49Z2008-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><httpRuntime maxRequestLength="10240" />
</code></pre>
http://stackoverflow.com/questions/223748/preventing-browser-timeout-on-large-file-uploads/333594#3335940Answer by jlchereau for Preventing browser timeout on large file uploadsjlchereau2008-12-02T10:37:41Z2008-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>