ObjectDataSource.ObjectCreated Event

Definition

Occurs after the object that is identified by the TypeName property is created.

C#
public event System.Web.UI.WebControls.ObjectDataSourceObjectEventHandler ObjectCreated;

Event Type

Remarks

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.

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 how to handle events, see Handling and Raising Events.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also