Sign in | Join
Last post 05-17-2009 10:50 PM by Bober Song - MSFT. 2 replies.
Sort Posts: Oldest to newest Newest to oldest
I have an ASP.NET website hosted at 1and1.com and I want to develop a web page on their site that allows users to FTP large files to their site from the user's PC. I tried using the FTP components that come with the 2.0 framework but, it doesn't work because it can't access the filesystem on a user's PC. I believe I need a java applet or ActiveX control to accomplish this; are there any freeware ones out there?
The <asp:fileupload /> control allows for uploading of files from the users current computer to your webhost, or their websites, or wherever, as long as you have access to do that.
~P
Hi
Why not use FileUpload control to upload files to server.
If you want to upload long size files, please check the setting of file size.
By the way, please pay attention to the permissions for file uploading writing.
For more informations, please double check the following links:
File Upload with ASP.NEThttp://www.codeproject.com/KB/aspnet/fileupload.aspxhttp://www.15seconds.com/Issue/061116.htmhttp://www.developer.com/net/asp/article.php/3097661
Large file uploads in ASP.NEThttp://weblogs.asp.net/jgalloway/archive/2008/01/08/large-file-uploads-in-asp-net.aspxhttp://dotnetslackers.com/Community/blogs/haissam/archive/2008/09/12/upload-large-files-in-asp-net-using-httpmodule.aspx
File Upload permissionshttp://forums.asp.net/p/965828/3167194.aspxhttp://www.kodyaz.com/articles/asp-net-file-upload-security-permissions.aspx
How to Upload File using FTP in ASP.Net 2.0http://www.devasp.net/net/articles/display/280.html
If you have any questions, please feel free to let me know.