ObjectDataSourceSelectingEventArgs Class
Provides data for the Selecting event of the ObjectDataSource control.
System::EventArgs
System.ComponentModel::CancelEventArgs
System.Web.UI.WebControls::ObjectDataSourceMethodEventArgs
System.Web.UI.WebControls::ObjectDataSourceSelectingEventArgs
Assembly: System.Web (in System.Web.dll)
The ObjectDataSourceSelectingEventArgs type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ObjectDataSourceSelectingEventArgs | Initializes a new instance of the ObjectDataSourceSelectingEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | Arguments | Provides a mechanism that the ObjectDataSource object can use to request data-related operations when data is retrieved. |
![]() | Cancel | Gets or sets a value indicating whether the event should be canceled. (Inherited from CancelEventArgs.) |
![]() | ExecutingSelectCount | Gets a value indicating whether the ObjectDataSource is retrieving a row count during a data retrieval operation. |
![]() | InputParameters | Gets a collection that contains business object method parameters and their values. (Inherited from ObjectDataSourceMethodEventArgs.) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The ObjectDataSourceSelectingEventArgs class is used in the OnSelecting method. Because it is derived from the ObjectDataSourceMethodEventArgs class, the ObjectDataSourceSelectingEventArgs class provides access to input parameters for validation and manipulation through the InputParameters property. The ObjectDataSourceSelectingEventArgs class also provides the ExecutingSelectCount property, which is used to check whether the currently executing data retrieval operation is retrieving a row count, in addition to the data. This is important because when data source paging is enabled, the Selecting event is raised twice. For more information, see ExecutingSelectCount.
The ObjectDataSource control exposes many events that you can handle to work with the underlying business object at various times in its life cycle. The following table lists the events and associated EventArgs classes and event handler delegates.
Event | EventArgs | EventHandler |
|---|---|---|
Occurs immediately before the business object is instantiated. | ||
Occurs immediately after the business object is instantiated. | ||
Occurs before the data is retrieved. | ObjectDataSourceSelectingEventArgs | |
Inserting, Updating, and Deleting. Occur before an insert, update, or delete operation is performed. | ||
Occurs after the data is retrieved. | ||
Inserted, Updated, and Deleted. Occur after the insert, update, or delete operation is completed. | ||
Occurs before a business object is destroyed. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


