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!

DataList ItemCreated Event

[To be supplied.]

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

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

Parameters

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

See Also

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