SqlDataSourceStatusEventHandler Delegate
Represents the method that will handle the Selected, Updated, Inserted, and Deleted events of the SqlDataSource control.
Assembly: System.Web (in System.Web.dll)
public delegate void SqlDataSourceStatusEventHandler( Object^ sender, SqlDataSourceStatusEventArgs^ e )
Parameters
- sender
-
Type:
System::Object^
The source of the event, the SqlDataSource control.
- e
-
Type:
System.Web.UI.WebControls::SqlDataSourceStatusEventArgs^
A SqlDataSourceStatusEventArgs that contains the event data.
When you create a SqlDataSourceStatusEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event handler delegates, see NIB: Consuming Events.
The following code example demonstrates how to handle the Updated event and examine the values contained in the SqlDataSourceStatusEventArgs object. The OnDSUpdatedHandler is called by the OnUpdated method to perform additional post-processing after an Update action is performed by a SqlDataSource control.
Available since 2.0
SqlDataSourceStatusEventHandler
SqlDataSource
OnSelected
OnUpdated
OnInserted
OnDeleted
System.Web.UI.WebControls Namespace