I am using a FileUpload to get a file from a user with ASP.NET. The code that I am using is:
string strConn = "Driver={Microsoft Excel Driver (*.xls)};DriverId=790;Dbq=" + FileUpload1.PostedFile.FileName;
So my question is this: is the file upload temporary storing the file somewhere and then the code can grab it, or is the file upload just a string path to where my file is? If latter then If I have this page live, and a user from a client side selects a path, will this code look for the file on server's computer or the user's computer?
Thanks for answering.