Hi,
When using FileUpload1 control creating an ASP web page, it only seems to be returning the file name, not the full directory + file name.
string FileToUpload = FileUpload1.FileName;
^^ FileToUpload becomes "filename.ext" instead of "c:\directory\filename.ext"
Also have tried using path:
string path = Path.GetDirectoryName(FileUpload1.FileName);
Help?