共用方式為


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

屬性值

要用於比較的欄位。

範例

下列範例示範如何在 AdventureWorks 資料庫的 Products 資料表中搜尋 List Price 資料行,以尋找在 和 ToTextBox 文字方塊中指定之範圍 FromTextBox 中具有清單價格的產品。

此程式碼範例是逐步解說 :使用宣告式語法篩選網頁中資料中較大範例的一部分。

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

備註

範圍運算式會搜尋指定範圍的資料欄位。

適用於