Both the following code will return the file name with extension but does not include the full directory path of the file on the client.
string filename = System.IO.Path.GetFileName(FileUpload1.PostedFile.FileName);
string filename = FileUpload1.FileName;