DataBoundControl.MarkAsDataBound Método

Definición

Establece el estado del control en estado de vista como enlazado correctamente a los datos.

protected:
 void MarkAsDataBound();
protected void MarkAsDataBound ();
member this.MarkAsDataBound : unit -> unit
Protected Sub MarkAsDataBound ()

Ejemplos

En el ejemplo de código siguiente se muestra cómo usa el MarkAsDataBound método una clase de control enlazada a datos derivada. Una vez recuperados los datos por el GetData método y enlazados al control con el PerformDataBinding método , la RequiresDataBinding propiedad se establece false en y se llama al MarkAsDataBound método para indicar que el control ha completado el enlace y ya no lo requiere durante el ciclo de vida de la página actual. Este ejemplo de código forma parte de un ejemplo más grande proporcionado para la DataBoundControl clase .

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

Comentarios

El control enlazado a datos mantiene un valor en estado de vista que indica si está enlazado actualmente a los datos. El MarkAsDataBound método establece el valor en true.

Se aplica a

Consulte también