ObjectDataSource.Filtering Event
Assembly: System.Web (in system.web.dll)
public: event ObjectDataSourceFilteringEventHandler^ Filtering { void add (ObjectDataSourceFilteringEventHandler^ value); void remove (ObjectDataSourceFilteringEventHandler^ value); }
/** @event */ public void add_Filtering (ObjectDataSourceFilteringEventHandler value) /** @event */ public void remove_Filtering (ObjectDataSourceFilteringEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
Handle the Filtering event to perform validation operations on filter parameter values before the ObjectDataSource control performs a filter operation. You can cancel the selected operation by setting the Cancel property of the ObjectDataSourceFilteringEventArgs to true. The event is raised only if the FilterExpression property is set.
Note: |
|---|
| If you are not familiar with the Data Access features in ASP.NET 2.0, you should read some of these topics before continuing: |
The ObjectDataSource.Filtering event delegates to the ObjectDataSourceView.Filtering event of the ObjectDataSourceView that is associated with the ObjectDataSource control.
Security Note: |
|---|
| You should validate any filter parameter value that you receive from the client. The runtime simply substitutes the parameter value into the filter expression and applies it to the DataSet or DataTable object that is returned by the Select method. If you are using the FilterExpression property as a security measure to limit the number of items that are returned, you must validate the parameter values before the filtering occurs. |
For more information about handling events, see Consuming Events.
Reference
ObjectDataSource ClassObjectDataSource Members
System.Web.UI.WebControls Namespace
ObjectDataSource.FilterExpression Property
ObjectDataSource.FilterParameters Property
Other Resources
ASP.NET Data Access OverviewData Source Web Server Controls
ObjectDataSource Control Overview
Creating an ObjectDataSource Control Source Object
Note:
Security Note: