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 ItemCreated Event

[To be supplied.]

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

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

Parameters

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

See Also

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