ImageButton::GenerateEmptyAlternateText Property
Gets or sets a value indicating whether the control generates an alternate-text attribute for an empty string value.
Assembly: System.Web (in System.Web.dll)
public: [BrowsableAttribute(false)] [ThemeableAttribute(false)] property bool GenerateEmptyAlternateText { virtual bool get() override; virtual void set(bool value) override; }
Property Value
Type: System::Booleanfalse, indicating that the ImageButton control does not generate an alternate-text attribute when the AlternateText property is empty.
| Exception | Condition |
|---|---|
| NotSupportedException | An attempt was made to set this property. |
By default, the ImageButton control renders the AlternateText property using an alt attribute. When the AlternateText property is not set, the ImageButton control does not include the alt attribute to specify the alternate-text in the control rendering.
The XHTML document type definition requires the alt attribute on image controls. However, accessibility best practices recommend that image controls that do not convey information relevant to the context of the Web page should not specify an alt attribute. You can meet both XHTML and accessibility requirements by setting the AlternateText property to true.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.
Available since 2.0