LinkButton.Click Event
.NET Framework 3.0
Occurs when the LinkButton control is clicked.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual event EventHandler^ Click { void add (EventHandler^ value) sealed; void remove (EventHandler^ value) sealed; }
/** @event */ public final void add_Click (EventHandler value) /** @event */ public final void remove_Click (EventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The Click event is raised when the LinkButton control is clicked. This event is commonly used when no command name is associated with the LinkButton control, as in the case of a Submit button.
For more information about handling events, see Consuming Events.
Community Additions
ADD
Show: