ObjectDataSourceView.ObjectCreated Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs after the ObjectDataSourceView object creates an instance of the type that is identified by the TypeName property.
public:
event System::Web::UI::WebControls::ObjectDataSourceObjectEventHandler ^ ObjectCreated;
public event System.Web.UI.WebControls.ObjectDataSourceObjectEventHandler ObjectCreated;
member this.ObjectCreated : System.Web.UI.WebControls.ObjectDataSourceObjectEventHandler
Public Custom Event ObjectCreated As ObjectDataSourceObjectEventHandler
Event Type
Remarks
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.