Programmatic name of the control.
Syntax
Visual Basic (Declaration) | |
---|
<System.Web.UI.FilterableAttribute(False)>
<System.Web.UI.ThemeableAttribute(False)>
<WebSysDescriptionAttribute("Programmatic name of the control.")>
<System.ComponentModel.ParenthesizePropertyNameAttribute(True)>
<System.ComponentModel.MergablePropertyAttribute(False)>
Public Overridable Property ID As System.String |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebInput
Dim value As System.String
instance.ID = value
value = instance.ID |
C# | |
---|
[System.Web.UI.FilterableAttribute(false)]
[System.Web.UI.ThemeableAttribute(false)]
[WebSysDescriptionAttribute("Programmatic name of the control.")]
[System.ComponentModel.ParenthesizePropertyNameAttribute(true)]
[System.ComponentModel.MergablePropertyAttribute(false)]
public virtual System.string ID {get; set;} |
Delphi | |
---|
public read-write property ID: System.String; virtual; |
JScript | |
---|
System.Web.UI.FilterableAttribute()
System.Web.UI.ThemeableAttribute()
WebSysDescriptionAttribute("Programmatic name of the control.")
System.ComponentModel.ParenthesizePropertyNameAttribute()
System.ComponentModel.MergablePropertyAttribute()
public function get,set ID : System.String |
Managed Extensions for C++ | |
---|
[System.Web.UI.FilterableAttribute(false)]
[System.Web.UI.ThemeableAttribute(false)]
[WebSysDescriptionAttribute("Programmatic name of the control.")]
[System.ComponentModel.ParenthesizePropertyNameAttribute(true)]
[System.ComponentModel.MergablePropertyAttribute(false)]
public: __property virtual System.string* get_ID();
public: __property virtual void set_ID(
System.string* value
); |
C++/CLI | |
---|
[System.Web.UI.FilterableAttribute(false)]
[System.Web.UI.ThemeableAttribute(false)]
[WebSysDescriptionAttribute("Programmatic name of the control.")]
[System.ComponentModel.ParenthesizePropertyNameAttribute(true)]
[System.ComponentModel.MergablePropertyAttribute(false)]
public:
virtual property System.String^ ID {
System.String^ get();
void set ( System.String^ value);
} |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also