Hi,
I am making an online page for a company so that users can upload and download files from the company's server. Now, as every ASP .NET developer knows, the ASP .NET framework includes a file upload control for users to upload files to the server.
The problem with this is that this control uses HTTP and is very slow and can not handle large file sizes.
I need to have file upload implemented with FTP. I have looked into it and from what I have seen people use the FTP classes in .NET to transfer files from one server to another, not from a user to the server through a web page.
Does anyone know of a solution using the framework for uploading to the server with FTP?
Any help is greatly appreciated.