In our asp.net page we want to allow the user to browse for a file to upload (using FileUpload control) and then process that file. The user may have a drive letter mapped (e.g. W:\processfiles) to their local PC but we need to convert that to a file system
path like \\server\folder\... or something. Is there a way to do this where the web server will know where to look? Or will we have to upload to a common virtual folder and then process? Thanks.
Go to the complete details ...