Uplaod Large Files Using ASP.NET

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have to upload large files using ASP.net on the remote server.

Any ideas or suggestions would be of great help!

Cheers
Prasad
 
By default, the request can be upto 4MB (including the uploaded file). If the
file is going to be more than that increase the value of maxRequestLength
attribute of httpRuntime element in the web.config. For example, having
<httpRuntime maxRequestLength="8096"/> set the max request size to 8MB (the
value is in KB).

Take a look at http://support.microsoft.com/kb/295626 too.
 
Back
Top