Home
english
Home
.NET Server
Java Server
.NET Client
AJAX Client
AJAX Browser
Map Drive
Pricing
Contacts
info@ithit.com



Downloading Files

Buffering in IIS/ASP.NET

By default ASP.NET buffers content on server side before sending output. To eliminate keeping entire file content in memory before sending, turn off buffering setting BufferOutput property to false:

HttpContext.Current.Response.BufferOutput = false;

Timeout in IIS/ASP.NET

To prevent canceling script execution when downloading a large file from IIS/ASP.NET server extend the script timeout value:

HttpContext.Current.Server.ScriptTimeout = 2400; // timeout in seconds.

Range Header

The WebDAV engine provides the means for downloading only a part of a file. The client application could send Range header to specify range of bytes to download. Download managers may use this feature to resume downloads or download single file using several threads at a time.


Selected Customers:
Country: Norway
DnB NOR Group
Country: Finland
Bank of Finland
USA
Symantec
Country: Sweden
Toyota
Country: Denmark
Danfoss Group
Country: USA
Microsoft
Country: Ukraine
Raiffeisen Bank
Country: USA
Siemens
Country: Ukraine
OTP Bank
Country: USA
Intel Corporation
Country: Austria
Austrian Federal Railways
Country: Israel
Autodesk, Inc.
Country: USA
U.S. Customs and Border Protection Agency
Home .NET Server Java Server .NET Client AJAX Client AJAX Browser Map Drive Pricing Contacts

Updated: Saturday, October 25, 2008