asp.net provides file upload control.... now if i want to upload files on my server, do i need to manage the file transfer protocall for that?
i m confused with file upload control and file transfer protocall... .net 2.0 provides the FTPWebRequest and FTPWebResponse classes for file uploading...why is it given sepratly? can you please tell me? thanks
2009-12-01 22:57:11
Those are for FTP; the upload control does it via HTTP (as posted above).
Noon Silk
2009-12-01 23:02:08
They'd be for uploading to other servers.
Mark Holland
2009-12-01 23:04:59
+2
A:
No, the control uses the HTTP protocol to upload files to your Web server.
Dan
2009-12-01 22:53:10
A:
On submit simply inspect the properties of the fileupload control: HasFile and PostedFile are the main two.
Mark Holland
2009-12-01 23:07:26