vote up 1 vote down star

I have a nice little file upload control I wrote for ASP.NET webforms that utilizes an IFrame and ASP.NET AJAX.

However, on large uploads, the browser times out before it can finish posting the form.

Is there a way I can increase this?

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.

EDIT: Setting the timeout in Page_Load didn't appear to change anything.

flag

53% accept rate

4 Answers

vote up 0 vote down

Check the code of Velodoc XP Edition. 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.

For more information check also www.memba.com and www.velodoc.com.

link|flag
vote up 1 vote down

I think you may need to adjust the MaxRequestLength

Its in the Web.config I think by default its 4megs.

The following would allow ~10 meg file:

<httpRuntime maxRequestLength="10240" />
link|flag
vote up 2 vote down

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.

Metabase Explorer: http://support.microsoft.com/kb/840671

Hmmm, perhaps I'm barking up the wrong tree... you wouldn't be doing 5 MB files if that wasn't already adjusted.

Another stab at it: see your web.config:

<system.web>
  <httpRuntime  maxRequestLength="102400" executionTimeout="360"/>
</system.web>

Max request length is in bytes and execution timeout is in seconds.

link|flag
vote up 1 vote down

In Page_Load, set Server.ScriptTimeout to a value that works for you. Measured in seconds I believe.

link|flag
You would do this in the actual iframe that gets posted back, correct? – FlySwat Oct 21 '08 at 22:31
Yes, if you are getting the request timeout in the iframe, then that would where you set Server.ScriptTimeout. – JasonS Oct 21 '08 at 22:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.