DataBoundControl.MarkAsDataBound Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Imposta lo stato del controllo nello stato di visualizzazione come associato correttamente ai dati.
protected:
void MarkAsDataBound();
protected void MarkAsDataBound ();
member this.MarkAsDataBound : unit -> unit
Protected Sub MarkAsDataBound ()
Esempio
Nell'esempio di codice seguente viene illustrato come il MarkAsDataBound metodo viene usato da una classe di controllo derivata associata a dati. Dopo che i GetData dati vengono recuperati dal metodo e associati al controllo con il PerformDataBinding metodo , la RequiresDataBinding proprietà viene impostata su false
e il MarkAsDataBound metodo viene chiamato per segnalare che il controllo ha completato l'associazione e non lo richiede più durante il ciclo di vita della pagina corrente. Questo esempio di codice fa parte di un esempio più ampio fornito per 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
Commenti
Il controllo associato a dati mantiene un valore nello stato di visualizzazione che indica se è attualmente associato ai dati. Il MarkAsDataBound metodo imposta il valore su true
.