Uploading Large Files using ASP.net

  • Thread starter Thread starter rajarameshvarma
  • Start date Start date
R

rajarameshvarma

Hi..

I am facing problems with file uploading in asp.net.my filea are
nearly 40 MB size. I set the MaxRequestLength property to match. Files
are getting uploaded but it is taking so much time. I want to reduce
the time. can anybody tell me a better way. I need to use only http
(no ftp).
I need to upload csv files. Is there ant way to split the files on
client machine and thne upload as small files?

Thanks
 
Hi..

I am facing problems with file uploading in asp.net.my filea are
nearly 40 MB size. I set the MaxRequestLength property to match. Files
are getting uploaded but it is taking so much time. I want to reduce
the time. can anybody tell me a better way. I need to use only http
(no ftp).
I need to upload csv files. Is there ant way to split the files on
client machine and thne upload as small files?

Thanks

Do you use CSV to import data into the server database?

Maybe you can upload a number of small files first and then, depends
on action, do the final processing.
 
Back
Top