HttpPostedFile.FileName Property
.NET Framework 2.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
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: