LinqDataSource.Inserted Evento
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.
Si verifica al termine di un'operazione di inserimento.
public:
event EventHandler<System::Web::UI::WebControls::LinqDataSourceStatusEventArgs ^> ^ Inserted;
public event EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs> Inserted;
member this.Inserted : EventHandler<System.Web.UI.WebControls.LinqDataSourceStatusEventArgs>
Public Custom Event Inserted As EventHandler(Of LinqDataSourceStatusEventArgs)
Tipo evento
Esempio
Nell'esempio seguente viene illustrato come creare un gestore eventi per l'evento Inserted che verifica la presenza di eccezioni e recupera la proprietà Identity per il nuovo record.
protected void LinqDataSource_Inserted(object sender, LinqDataSourceStatusEventArgs e)
{
if (e.Exception == null)
{
Product newProduct = (Product)e.Result;
Literal1.Text = "The new product id is " + newProduct.ProductID;
Literal1.Visible = true;
}
else
{
LogError(e.Exception.Message);
Literal1.Text = "We are sorry. There was a problem saving the record. The administrator has been notified.";
Literal1.Visible = true;
e.ExceptionHandled = true;
}
}
Protected Sub LinqDataSource_Inserted(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.LinqDataSourceStatusEventArgs)
If (IsNothing(e.Exception)) Then
Dim newProduct As Product
newProduct = CType(e.Result, Product)
Literal1.Text = "The new product id is " & newProduct.ProductID
Literal1.Visible = True
Else
LogError(e.Exception.Message)
Literal1.Text = "We are sorry. There was a problem saving the record. The administrator has been notified."
Literal1.Visible = True
e.ExceptionHandled = True
End If
End Sub
Commenti
Gestire l'evento Inserted per intercettare eventuali eccezioni dall'operazione di inserimento o per esaminare i valori al termine dell'operazione di inserimento. È possibile recuperare i nuovi valori tramite l'oggetto LinqDataSourceStatusEventArgs passato ai gestori eventi. È ad esempio possibile utilizzare l'oggetto LinqDataSourceStatusEventArgs per recuperare la proprietà Identity generata da un database per un nuovo record di dati.