re:[color=blue]
> Can anyone suggest me best way to upload large files (>100-500MB)[/color]
What ? Are you running a pirate site ?
( Only kidding... )
You need to do two things :
1. Increase the httpRuntime to the max file size you expect.
<httpRuntime
maxRequestLength="MaxNumberOfKilobytes"
/>
<httpRuntime
maxRequestLength="4096"
/>
is the default, and stands for 4MB max file size.
2. Increase the Session duration to the time needed to upload
the largest file you expect to be uploaded.
<sessionState
timeout="HoweverLongItTakesToUploadTheLargestFile"
/>
That's an integer which stands for minutes.
Example for 200 minutes :
<sessionState
timeout="200"
/>
Remember that the larger the Session Timeout,
the more server resources you use, so don't
set this to more than you need.
You'll have to calculate your connection's upload speed
and figure out the maximum time you should allot for
the maximum file size you want to specify.
Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ :
http://asp.net.do/faq/
Foros de ASP.NET en Espaņol :
http://asp.net.do/foros/
======================================
"Raj Dhrolia" <rajdhrolia@hotmail.com> wrote in message
news:eIHk63qvFHA.460@TK2MSFTNGP15.phx.gbl...[color=blue]
> Hi,
> Can anyone suggest me best way to upload large files (>100-500MB) to my
> ASP.NET web application (IIS 6.0, Win 2K3).
> The problem we see with conventional method is that the session times
> out, and the entire file gets loaded in IIS memory and things get worst when
> couple of users upload 100s of MBs of file.
> The solution should also work with MAC browsers.
> Any pointers will be of great help.
> Thanks,
> Raj.
>
>[/color]