Bagikan melalui


BaseDataBoundControl.IsBoundUsingDataSourceID Properti

Definisi

Mendapatkan nilai yang menunjukkan apakah DataSourceID properti diatur.

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

Nilai Properti

Nilai true dikembalikan jika DataSourceID properti diatur ke nilai selain Empty; jika tidak, nilainya adalah false.

Contoh

Contoh kode berikut menunjukkan bagaimana IsBoundUsingDataSourceID properti digunakan oleh kelas kontrol terikat data turunan. Properti IsBoundUsingDataSourceID digunakan dalam PerformSelect implementasi metode untuk menentukan apakah DataBinding peristiwa harus dinaikkan. Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk DataBoundControl kelas .

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

Keterangan

Kontrol seperti , , , dan Menu menggunakan IsBoundUsingDataSourceID properti untuk menentukan apakah kontrol terikat data terikat ke kontrol sumber data ASP.NET 2.0, seperti ObjectDataSource atau SqlDataSource. FormViewDetailsViewGridView

Berlaku untuk

Lihat juga