ObjectDataSource.ObjectCreated Event
Assembly: System.Web (in system.web.dll)
public: event ObjectDataSourceObjectEventHandler^ ObjectCreated { void add (ObjectDataSourceObjectEventHandler^ value); void remove (ObjectDataSourceObjectEventHandler^ value); }
/** @event */ public void add_ObjectCreated (ObjectDataSourceObjectEventHandler value) /** @event */ public void remove_ObjectCreated (ObjectDataSourceObjectEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
Handle the ObjectCreated event to call other methods on the business object, set properties, or perform other initialization that is specific to the business object before the ObjectDataSource object calls the business object data method to perform a data operation. A reference to the object is accessed by the ObjectInstance property, which is exposed by the ObjectDataSourceEventArgs object.
Note: |
|---|
| If you are not familiar with the Data Access features in ASP.NET 2.0, you should read some of these topics before continuing: |
If the method that is identified to perform the data operation is static (Shared in Visual Basic), the ObjectCreating and ObjectCreated events are never raised.
For more information about handling events, see Consuming Events.
Note: