HtmlInputText.Value Property
.NET Framework 3.0
Gets or sets the contents of the text box.
Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in system.web.dll)
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)
Not applicable.
Property Value
The text contained in the text box. The default is an empty string ("").Use the Value property to programmatically determine the text entered by the user into the text box. You can also use this property to provide default text for the text box.
Note: |
|---|
| If you specify a value for a password type HtmlInputText control, that value is not displayed in the text box. |
Community Additions
ADD
Show:
Note: