SqlDataSource.Selecting Event

Definition

Occurs before a data retrieval operation.

C#
public event System.Web.UI.WebControls.SqlDataSourceSelectingEventHandler Selecting;

Event Type

Remarks

Handle the Selecting event to perform additional initialization operations that are specific to your application, to validate the values of parameters, or to change the parameter values before the SqlDataSource control performs the select operation. The select arguments are available from the SqlDataSourceSelectingEventArgs object that is associated with the event.

For more information about how to handle events, see Handling and Raising Events.

Applies to

Proizvod Verzije
.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