DynamicFilterExpression.ControlID Property
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.
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.