HttpPostedFile.FileName Property
.NET Framework 3.0
Gets the fully qualified name of the file on the client.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following code example demonstrates how to assign the name of an uploaded file (the first file in the file collection) to a string variable.
HttpFileCollection myFileColl = get_Request().get_Files(); HttpPostedFile myPostedFile = myFileColl.Get(0); String myFileName = myPostedFile.get_FileName();
var myFileCollection : HttpFileCollection = Request.Files var myPostedFile : HttpPostedFile = myFileCollection.Get(0) var myFileName : String = myPostedFile.FileName
Community Additions
ADD
Show: