RangeExpression.DataField 属性

定义

获取或设置要用于比较的字段。

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

属性值

String

要用于比较的字段。

示例

下面的示例演示如何在 AdventureWorks 数据库的 Products 表中搜索列表 Price 列,以查找在和文本框中指定的范围内具有标价的产品 FromTextBox ToTextBox

此代码示例摘自 演练:使用声明性语法筛选网页中的数据中提供的一个更大的示例。

<asp:RangeExpression DataField="ListPrice"    
    MinType="Inclusive" MaxType="Exclusive">  
  <asp:ControlParameter ControlID="FromTextBox" />  
  <asp:ControlParameter ControlID="ToTextBox" />  
</asp:RangeExpression>  

注解

范围表达式搜索指定范围内的数据字段。

适用于