BaseDataBoundControl.IsBoundUsingDataSourceID Vlastnost

Definice

Získá hodnotu označující, zda je nastavena DataSourceID vlastnost.

protected:
 property bool IsBoundUsingDataSourceID { bool get(); };
protected bool IsBoundUsingDataSourceID { get; }
member this.IsBoundUsingDataSourceID : bool
Protected ReadOnly Property IsBoundUsingDataSourceID As Boolean

Hodnota vlastnosti

Hodnota true se vrátí, pokud DataSourceID je vlastnost nastavená na jinou hodnotu než Empty; jinak je falsehodnota .

Příklady

Následující příklad kódu ukazuje, jak IsBoundUsingDataSourceID je vlastnost používána odvozenou třídou ovládacího prvku vázaného na data. Vlastnost IsBoundUsingDataSourceID se používá v implementaci PerformSelect metody k určení, zda DataBinding má být vyvolána událost. Tento příklad kódu je součástí většího příkladu DataBoundControl pro třídu.

protected override void PerformSelect() {            

   // Call OnDataBinding here if bound to a data source using the
   // DataSource property (instead of a DataSourceID), because the
   // databinding statement is evaluated before the call to GetData.       
    if (! IsBoundUsingDataSourceID) {
        OnDataBinding(EventArgs.Empty);
    }            
    
    // The GetData method retrieves the DataSourceView object from  
    // the IDataSource associated with the data-bound control.            
    GetData().Select(CreateDataSourceSelectArguments(), 
        OnDataSourceViewSelectCallback);
    
    // The PerformDataBinding method has completed.
    RequiresDataBinding = false;
    MarkAsDataBound();
    
    // Raise the DataBound event.
    OnDataBound(EventArgs.Empty);
}
Protected Overrides Sub PerformSelect()

    ' Call OnDataBinding here if bound to a data source using the 
    ' DataSource property (instead of a DataSourceID) because the 
    ' data-binding statement is evaluated before the call to GetData.
    If Not IsBoundUsingDataSourceID Then
        OnDataBinding(EventArgs.Empty)
    End If

    ' The GetData method retrieves the DataSourceView object from the 
    ' IDataSource associated with the data-bound control.            
    GetData().Select(CreateDataSourceSelectArguments(), _
        AddressOf OnDataSourceViewSelectCallback)

    ' The PerformDataBinding method has completed.
    RequiresDataBinding = False
    MarkAsDataBound()

    ' Raise the DataBound event.
        OnDataBound(EventArgs.Empty)

End Sub

Poznámky

Ovládací prvky, jako GridViewjsou , DetailsViewFormView, a Menu používají IsBoundUsingDataSourceID vlastnost k určení, zda je ovládací prvek vázaný na data vázaný na ovládací prvek zdroje dat ASP.NET 2.0, například nebo ObjectDataSourceSqlDataSource.

Platí pro

Viz také