private void Window_Error(object sender, System.Windows.Forms.HtmlElementErrorEventArgs e)
 {
     try
     {
         // Ignore the error and suppress the error dialog box.
         e.Handled = true;
     }
     catch (Exception ex) { ex.ERROR(); }
 }
 /// <summary>
 /// 浏览器加载异常
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void Window_Error(object sender, System.Windows.Forms.HtmlElementErrorEventArgs e)
 {
     try
     {
         e.Handled = true;
     }
     catch (Exception ex)
     {
         LogManage.WriteLog(this.GetType(), ex);
     }
     finally
     {
     }
 }