Handles the Command event of the checkBox control.

Namespace: MonoSoftware.Web.Controls
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
protected void checkBox_Command(
	Object sender,
	CommandEventArgs e
)
Visual Basic
Protected Sub checkBox_Command ( 
	sender As Object,
	e As CommandEventArgs
)
Visual C++
protected:
void checkBox_Command(
	Object^ sender, 
	CommandEventArgs^ e
)
F#
member checkBox_Command : 
        sender : Object * 
        e : CommandEventArgs -> unit 

Parameters

sender
Type: System..::..Object
The source of the event.
e
Type: System.Web.UI.WebControls..::..CommandEventArgs
The CommandEventArgs instance containing the event data.

See Also