ObjectDataSource.Deleted Event

Note: This event is new in the .NET Framework version 2.0.

Occurs when a Delete operation has completed.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

public:
event ObjectDataSourceStatusEventHandler^ Deleted {
	void add (ObjectDataSourceStatusEventHandler^ value);
	void remove (ObjectDataSourceStatusEventHandler^ value);
}
/** @event */
public void add_Deleted (ObjectDataSourceStatusEventHandler value)

/** @event */
public void remove_Deleted (ObjectDataSourceStatusEventHandler value)

JScript supports the use of events, but not the declaration of new ones.

Handle the Deleted event to examine the values of a return value or output parameters, or to determine whether an exception was thrown after a Delete operation has completed. The return value, output parameters, and exception handling properties are available from the ObjectDataSourceStatusEventArgs object that is associated with the event.

You can use the AffectedRows property of the ObjectDataSourceStatusEventArgs object to return the number of rows that were deleted from the Delete method. To do this, set the AffectedRows property. If you return the number of deleted rows from the method that is specified by the DeleteMethod property, the value is available from the ReturnValue property of the ObjectDataSourceStatusEventArgs object.

For more information about handling events, see Consuming Events.

This section contains two code examples. The first code example demonstrates how to use an ObjectDataSource object with a business object and a GridView control to delete data. The second code example shows the EmployeeLogic class that is used in the first code example.

The following code example demonstrates how to use an ObjectDataSource control with a business object and a GridView control to delete data. Initially, the GridView control displays a set of all employees, using the method that is specified by the SelectMethod property to retrieve the data from the EmployeeLogic object. Because the AutoGenerateDeleteButton property is set to true, the GridView control automatically displays a Delete button.

If you click the Delete button, the delete operation is performed using the method that is specified by the DeleteMethod property and any parameters that are specified in the DeleteParameters collection. In this code example, some preprocessing and post-processing steps are also performed. The NorthwindEmployeeDeleting delegate is called to handle the Deleting event before the operation is performed and the NorthwindEmployeeDeleted delegate is called to handle the Deleted event after the operation has completed to perform exception handling. In this code example, if a NorthwindDataException is thrown, it is handled by the NorthwindEmployeeDeleted method.

No code example is currently available or this language may not be supported.

The following code example shows the EmployeeLogic class that is used in the preceding code example.

No code example is currently available or this language may not be supported.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: