HyperLink.SupportsDisabledAttribute Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the control should set the disabled
attribute of the rendered HTML element to "disabled" when the control's IsEnabled property is false
.
public:
virtual property bool SupportsDisabledAttribute { bool get(); };
public override bool SupportsDisabledAttribute { get; }
member this.SupportsDisabledAttribute : bool
Public Overrides ReadOnly Property SupportsDisabledAttribute As Boolean
Property Value
true
if the RenderingCompatibility property indicates an ASP.NET version lower than 4.0
; otherwise, false
.
Remarks
This property indicates how ASP.NET should render HTML for a control when the control is disabled. If this property is true
, ASP.NET renders a disabled
attribute when a control is disabled. If this property is false
, ASP.NET renders a class
attribute when a control is disabled. For more information, see WebControl.SupportsDisabledAttribute.