The file upload control is not designed to provide you with the *path* of the file, but with the file itself. Obviously, the path is only good on the machine from with you upload.
If filUpload is the name of the upload control, then you should be able to get the file from here:
filUpload.FileBytes as a byte array
or
filUpload.FileContent as a System.IO.Stream
-
Peter