DynamicFilterExpression.ControlID Property

Definition

Gets or sets the filter control identifier.

public:
 property System::String ^ ControlID { System::String ^ get(); void set(System::String ^ value); };
public string ControlID { get; set; }
member this.ControlID : string with get, set
Public Property ControlID As String

Property Value

The filter control identifier.

Examples

The following example shows how to use the DynamicFilterExpression class to select a filter control in a page.

<asp:QueryExtender ID="QueryExtender1"   
    TargetControlID="GridDataSource" runat="server">  
    <asp:DynamicFilterExpression ControlID="CategoryFilterID" />  
</asp:QueryExtender>  

Remarks

This control identifier is used by the DynamicFilterExpression class to select the filter control to which it delegates the task of building of the query, which is in turn executed by the data source control.

The filter control delegates the task of building of the query to the filter template it references. The query is then executed by the data source control that is referenced by the QueryExtender control.

Applies to

See also