Connecting Tech Pros Worldwide Forums | Help | Site Map

Uploading Large Files using ASP.net

rajarameshvarma@gmail.com
Guest
 
Posts: n/a
#1: Feb 20 '07
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


Alexey Smirnov
Guest
 
Posts: n/a
#2: Feb 20 '07

re: Uploading Large Files using ASP.net


On Feb 20, 11:34 am, rajarameshva...@gmail.com wrote:
Quote:
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.

Closed Thread