Upload

  • Thread starter Thread starter Bill Hicks
  • Start date Start date
B

Bill Hicks

I'm trying to come up with an efficient HTTP File Upload solution, but have
been discouraged by the things I have read about how Asp.Net caches the
entire file in memory before relinquishng control to the programmer. This
is definitely not good for many simultaneous uploads. As an Asp.Net
developer, do I need to resort to a third party control or can I accomplish
this in Asp.Net effectively somehow?

Thanks
Bill
 
If you don't want to use any 3rd-party controls, you'll have to use other
web technologies(such as ASP, Perl CGI, JSP, etc.) or write you own ISAPI
filter to handle files before ASP.NET even touch it.
 
Back
Top