Example #1
0
 protected virtual void OnCustomerError(CustomerErrorEventArgs args)
 {
     if (CustomerError != null)
         CustomerError(this, args);
 }
Example #2
0
 void form_CustomerError(object o, CustomerErrorEventArgs args)
 {
     ErrorMessageLiteral.Text = args.ErrorMessage + " test from literal control";
 }