ControlFilterExpression.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 ID of the source data-bound control.
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 ID of the source data-bound control.
Examples
The following example shows how to use the ControlFilterExpression class to set the ID of the source data-bound control.
<asp:QueryExtender ID="QueryExtenderID"
TargetControlID="TargetDataSourceID" runat="server">
<asp:ControlFilterExpression ControlID="GridViewID" Column="Category"/>
</asp:QueryExtender>
Remarks
The ControlID property identifies the source data-bound control from which the data key is selected. The selected data key is then used by the ControlFilterExpression control to build the query.