protected void CheckForException(object sender, ObjectDataSourceStatusEventArgs e)
 {
     MessageUserControl.HandleDataBoundException(e);
 }
Exemple #2
0
 protected void CheckForExceptions(object sender, ObjectDataSourceStatusEventArgs e)
 {
     MessageUserControl.HandleDataBoundException(e);
     //works for the oninsert, onupdate and delete
     // the objectdatasource control.
 }
 protected void CheckForException(object sender, ObjectDataSourceStatusEventArgs e)
 {
     // this code is used to capture and handle errors from the ODS control
     MessageUserControl.HandleDataBoundException(e);
 }
Exemple #4
0
 protected void HandleCRUDErrors(object sender, ObjectDataSourceStatusEventArgs e)
 {
     MessageUserControl.HandleDataBoundException(e);
 }
 protected void CheckForExceptions(object sender, ObjectDataSourceStatusEventArgs e)
 {
     // Works for the OnInsert, OnUpdate, and OnDelete events of
     // the ObjectDataSource control.
     MessageUserControl.HandleDataBoundException(e);
 }