Maximum RadAsyncUpload File Size

I was asked to write an application that basically moves files from a source (USB, CD) to a central location. Initially, this application will be intended for internal use only, but may be needed by remote users in the future. Files I need to move can exceed 4-5 GB. It was proposed to use the Telerik RadAsyncUpload component. Can someone tell me if I might run into problems downloading files of this size using this control?

+4
source share
2 answers

To increase the load, maxRexquestLength and executeTimeout must be added to your web.config:

    <system.web>
      <httpRuntime targetFramework="4.5" maxRequestLength="5242880" executionTimeout="10800" />
    </system.web>

The most difficult part of this work is that the wait time for execution can exceed the required load time. Therefore, set it higher based on average user bandwidth. We control this by registering when a timeout occurs and is periodically configured. Since your application will initially be from the beginning, it probably will not be a problem at all if they transmit over the local network.

Further information on this is available in the Telerik documentation here .

0
source

, RadAsyncUpload: 1) telerik

<system.webServer>
<security>
  <requestFiltering>
    <requestLimits maxAllowedContentLength="100000000" />
  </requestFiltering>
</security>

2) ASP.NET HTTP, HTTP- . maxRequestLength executeTimeout.

<system.web><httpRuntime targetFramework="4.5" maxRequestLength="102400" executionTimeout="2147483647" /></system.web>

3) IIS 30 . , web.config, .

<system.webServer>
<security>
  <requestFiltering>
    <requestLimits maxAllowedContentLength="100000000" />
  </requestFiltering>
</security>

0

All Articles