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!

HtmlInputCheckBox ServerChange Event

[To be supplied.]

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

[Visual Basic]
Protected Sub HtmlInputCheckBoxName_ServerChange( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
)
[C#]
protected void HtmlInputCheckBoxName_ServerChange(
   object sender,
   EventArgs e
);
[C++]
protected: void HtmlInputCheckBoxName_ServerChange(
   Object* sender,
   EventArgs* e
);
[JScript]
protected HtmlInputCheckBoxName_ServerChange(
   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

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