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

[To be supplied.]

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

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

Parameters

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

See Also

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