I am using IIS 6.0. I want to setup a folder where user can upload some files. Can anyone suggest a step by step procedure for that?
Tell me more
×
Server Fault is a question and answer site for
professional system and network administrators. It's 100% free, no registration required.
|
closed as not a real question by Chris S♦ Aug 4 '12 at 2:55
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You can either write an HTML/ASPX/Javascript/PHP/whatever page that has a file-picker and transmits the selected file from the client to the server via HTTP or HTTPS. You'll have to code this yourself or get a template from somewhere. or You can enable FTP and have people FTP files to the server. FTP is bad for many reasons, the biggest one is that it passes credentials in plain-text. Unfortunately, with IIS 6.0 as your web platform, you don't have the option to use FTPS. |
|||
|
|