HtmlInputFile.Value Property
Assembly: System.Web (in system.web.dll)
public: virtual property String^ Value { String^ get () override; void set (String^ value) override; }
/** @property */ public String get_Value () /** @property */ public void set_Value (String value)
public override function get Value () : String public override function set Value (value : String)
Property Value
The full path of the client's file.The Value property retrieves the full path of the file on the client's computer (for example "C:\MyFiles\Test.txt"). This is useful when you need to know where the file is stored on the computer submitting the file. This property is also commonly used to determine the original file name. To get the original file name, parse the value of this property.
Note |
|---|
| The Value property is read-only. If you attempt to assign a value to this property, a System.NotSupportedException is thrown. |
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.
Note