NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HtmlButton ServerClick Event

Occurs when the user clicks an HtmlButton control on the browser.

The following declaration shows the syntax for a method that handles the ServerClick event.

[Visual Basic]
Protected Sub HtmlButtonName_ServerClick( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
)
[C#]
protected void HtmlButtonName_ServerClick(
   object sender,
   EventArgs e
);
[C++]
protected: void HtmlButtonName_ServerClick(
   Object* sender,
   EventArgs* e
);
[JScript]
protected HtmlButtonName_ServerClick(
   sender : Object,
   e : EventArgs
);

Parameters

sender
The source of the event.
e
An EventArgs that contains the event data. The following EventArgs properties provide information specific to this event.
Property Description
ExtendedInfo
Holds a reference to an object that manages the event's state.

See Also

HtmlButton Class | HtmlButton MembersTopic | System.Web.UI.HtmlControls Namespace