Button.OnClientClick Property
.NET Framework 3.0
Gets or sets the client-side script that executes when a Button control's Click event is raised.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[ThemeableAttribute(false)] public: virtual property String^ OnClientClick { String^ get (); void set (String^ value); }
/** @property */ public String get_OnClientClick () /** @property */ public void set_OnClientClick (String value)
public function get OnClientClick () : String public function set OnClientClick (value : String)
Not applicable.
Property Value
The client-side script that executes when a Button control's Click event is raised.Use the OnClientClick property to specify additional client-side script that executes when a Button control's Click event is raised. The script that you specify for this property is rendered in the Button control's OnClick attribute in addition to the control's predefined client-side script.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and Introduction to ASP.NET Themes.
Community Additions
ADD
Show: