Uplaod Large Files Using ASP.NET

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
 
G

Guest

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top