Beispiel #1
0
 protected void BadDateFormatErrorHandler(string defaultMessage, string rawDate)
 {
     if (DateFormatError != null)
     {
         Analytics_controls_Toolbar_EventArgs e = new Analytics_controls_Toolbar_EventArgs(defaultMessage, rawDate);
         DateFormatError(this, e);
     }
 }
Beispiel #2
0
 protected void DateFormatError(object sender, Analytics_controls_Toolbar_EventArgs e)
 {
     litErrorMessage.Text = e.Message;
     ErrorPanel.Visible = true;
 }