SearchExpression::DataFields Property
Gets and sets a single field or a comma-separated list of fields to search.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
| Exception | Condition |
|---|---|
| InvalidOperationException | The DataFields property is nullptr. |
The SearchExpression class performs the search in one or more data fields in the specified table. At least one data field must be specified in the SearchExpression instance. If you specify more than one data field, separate the fields by using a comma.
The following example shows how to search the Name and the ProductNumber data fields in the Products table of the AdventureWorks database for products that have names that start with a specified string. This code example is part of a larger example provided in Walkthrough: Filtering Data in a Web Page Using Declarative Syntax.
<asp:SearchExpression SearchType="StartsWith"
DataFields="Name","ProductNumber" >
<asp:ControlParameter ControlID="SearchTextBox" />
</asp:SearchExpression>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.