BaseDataBoundControl.IsBoundUsingDataSourceID Propriété

Définition

Obtient une valeur indiquant si la propriété DataSourceID est définie.

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

Valeur de propriété

La valeur true est retournée si la DataSourceID propriété est définie sur une valeur autre que Empty; sinon, la valeur est false.

Exemples

L’exemple de code suivant montre comment la IsBoundUsingDataSourceID propriété est utilisée par une classe de contrôle liée aux données dérivée. La IsBoundUsingDataSourceID propriété est utilisée dans l’implémentation de la PerformSelect méthode pour déterminer si l’événement DataBinding doit être déclenché. Cet exemple de code fait partie d’un exemple plus grand fourni pour la DataBoundControl classe .

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

Remarques

Les contrôles tels que , , et utilisent la IsBoundUsingDataSourceID propriété pour déterminer si le contrôle lié aux données est lié à un contrôle de source de données ASP.NET 2.0, tel qu’un ObjectDataSource ou SqlDataSource.MenuFormViewDetailsViewGridView

S’applique à

Voir aussi