ObjectDataSourceView.ObjectCreated Event

Occurs after the ObjectDataSourceView object creates an instance of the type that is identified by the TypeName property.

Namespace: System.Web.UI.WebControls
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 to perform other initialization that is specific to the business object before the ObjectDataSource control calls the Data methods for the business object. 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.

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

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: