Click or drag to resize
UploadedFileFileName Property
Gets the fully-qualified name of the file on the client's computer (for example "C:\MyFiles\Test.txt").

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public abstract string FileName { get; }

Property Value

Type: String
A string containing the fully-qualified name of the file on the client's computer.
Examples
The following example assigns the name of an uploaded file (the first file in the file collection) to a string variable.
UploadedFile MyUploadedFile = KaxUpload1.UploadedFiles[0];
string MyFileName = MyUploadedFile.FileName;
See Also