ImageButton::Enabled Property
Gets or sets a value indicating whether the ImageButton can be clicked to perform a post back to the server.
Assembly: System.Web (in System.Web.dll)
[BrowsableAttribute(true)] [BindableAttribute(true)] public: virtual property bool Enabled { bool get () override; void set (bool value) override; }
<asp:ImageButton Enabled="True|False" />
Property Value
Type: System::Booleantrue if the control is enabled; otherwise, false. The default is true.
Use the Enabled property to specify whether an ImageButton can be clicked to perform a post back to the server. If you set this property to false, the control renders on the page, but does not raise a post back event when clicked.
The following code example demonstrates how to use the Enabled property. The page contains two ImageButton controls. The Enabled property is set to true for the EnabledImageButton image button, causing it to post back to the server when clicked. The Enabled property is set to false for the NotEnabledImageButton image button, causing it to render on the page, but not post back to the server when clicked.
Note |
|---|
The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Page Code Model. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note