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!

Repeater ItemCommand Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A RepeaterCommandEventArgs that contains the event data. The following RepeaterCommandEventArgs properties provide information specific to this event.
Property Description
CommandSource
[To be supplied.]
Item
[To be supplied.]

See Also

Repeater Class | Repeater MembersTopic | System.Web.UI.WebControls Namespace