ObjectDataSourceEventArgs Class
Assembly: System.Web (in system.web.dll)
The ObjectDataSourceEventArgs class is used in the OnObjectCreating and OnObjectCreated methods to provide access to the business object instance before any data operations that are using the ObjectDataSource control and business object are performed. The business object is set and accessed using the ObjectInstance property. By adding an event handler delegate to handle the ObjectCreating event, you can create an instance of the business object in custom code instead of the ObjectDataSource performing the instantiation. This is useful when you want a non-default instance of your business object or to call a non-default constructor to create the instance; the ObjectDataSource always calls the default constructor to create an instance of the business object it works with. You can also add an event handler delegate to handle the ObjectCreated event, which enables you to access any publicly exposed members of the business object to perform any additional initialization or work.
The OnObjectCreating and OnObjectCreated methods are not called by the ObjectDataSource control, if the business object method that performs the data operations is static.
The ObjectDataSource control exposes many events that you can handle to work with the underlying business object at various times in its lifecycle. The following table lists the events and the associated EventArgs classes and event handler delegates.
| Event | EventArgs | EventHandler |
|---|---|---|
| ObjectCreating. Occurs immediately before the instance of the business object is created. | ObjectDataSourceEventArgs | |
| ObjectCreated. Occurs immediately after the instance of the business object is created. | ObjectDataSourceEventArgs | ObjectDataSourceObjectEventHandler |
| Occurs before the data is retrieved. | ||
| Inserting, Updating, and Deleting. Occur before an insert, update, or delete operation is performed. | ||
| Occurs after the data is retrieved. | ||
| Occur after the insert, update, or delete operation is completed. | ObjectDataSourceStatusEventArgs | ObjectDataSourceStatusEventHandler |
| Occurs before a business object is destroyed. |
This section contains two code examples. The first code example demonstrates how to use an ObjectDataSource control with a business object and a GridView control to retrieve and display information. The second code example provides the example basic business object that the first code example uses.
The following code example demonstrates how to use an ObjectDataSource control with a business object and a GridView control to retrieve and display information. In this example, as in many real-world scenarios, it might not be possible nor appropriate to use a default instance of the business object with the ObjectDataSource control. In this example, the ObjectDataSource cannot successfully call the default constructor because it will throw an exception. In some cases, the default constructor might be protected and in others it might not initialize the business object to a desired state. Whatever the reason, you can create an instance of the business object yourself and set the instance to the ObjectInstance property of the ObjectDataSourceEventArgs object that is passed to the handler. This is the business object instance that the ObjectDataSource will use to perform its work.
The following code example demonstrates the example basic business object that the preceding code example uses.
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
- AspNetHostingPermission for operating in a hosted environment. Demand value: InheritanceDemand; Permission value: Minimal.