C# 禁止 Webbrowser 控件的弹出脚本错误对话框

时间:2021-10-23 11:28:46

当IE浏览器遇到脚本错误时浏览器,左下 角会出现一个黄色图标,点击可以查看脚本错误的详细信息,并不会有弹出的错误信息框。当我们使用 WebBrowser控件时有错误信息框弹出,这样程序显的很不友好,而且会让一些自动执行的程序暂停。我看到有人采取的解决方案是做一个窗体杀手程序来 关闭弹出的窗体。今天探讨的方法是从控件解决问题。

1、SHDocVw.dll

在COM时代我们使用的WebBrowser控件是SHDocVw.dll。屏蔽错误信息的方法很简单使用下面的一句就可以搞定。

view plaincopy to clipboardprint?
WebBrowser1.Silent = true; 
WebBrowser1.Silent = true;

2、.Net中

在.Net中提供了托管的WebBrowser可供我们使用,当然我们仍然可以在.Net中使用COM组建SHDocVw.dll,如果使用SHDocVw.dll
处理错误方式和上面的方法一样。但如果我们是使用.Net组件如何解决这个问题呢?

这个组件给我们提供了一个方法ScriptErrorsSuppressed 。但是在.net framework2.0中他是不起作用的,据说在低版本中使用如下的方式解决

view plaincopy to clipboardprint?
webBrowser1.ScriptErrorsSuppressed = true; 
webBrowser1.ScriptErrorsSuppressed = true;


WebBrowser 控件 ScriptErrorsSuppressed
设置为True,可禁止弹出脚本错误对话框,ScriptErrorsSuppressed属性是对其基础COM控件的Silent属性的封装,因此设置
ScriptErrorsSuppressed属性和设置其基础COM控件的Slient属性是效果一样的,这一点通过反编译
System.Windows.Forms程序集可以证实。

为了解决这个问题,有的人专门从WebBrowser派生出一个新类,然后重写了AttachInterfaces方法,其实也是没有必要的,效果和直接设置ScriptErrorsSuppressed属性相同。

不过要注意的是:
ScriptErrorsSuppressed 设置为True会禁用所有的对话框,比如提示Activex下载、执行以及安全登录等对话框。

如果不想禁止除脚本错误之外的对话框,请使用MSDN上的代码示例:

view plaincopy to clipboardprint?
private void browser_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)  
{  
    ((WebBrowser)sender).Document.Window.Error += new HtmlElementErrorEventHandler(Window_Error);  
}  
 
private void Window_Error(object sender, HtmlElementErrorEventArgs e)  
{  
    // Ignore the error and suppress the error dialog box.   
    e.Handled = true;  

private void browser_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
    ((WebBrowser)sender).Document.Window.Error += new HtmlElementErrorEventHandler(Window_Error);
}

private void Window_Error(object sender, HtmlElementErrorEventArgs e)
{
    // Ignore the error and suppress the error dialog box.
    e.Handled = true;
}

3、上面的方法对于多个框架嵌套等等的情形还是不能很好的解决

为了彻底解决这个问题,我们借助AxWebBrowser来解决WebBrowser的问题。

我们定义一个自己的类,他的父类是WebBrowser,以后使用这个类就可以了。在这个类的定义中需要引用SHDocVw。
view plaincopy to clipboardprint?
class EWebBrowser : System.Windows.Forms.WebBrowser  
{  
    SHDocVw.IWebBrowser2 Iwb2;  
 
    protected override void AttachInterfaces(object nativeActiveXObject)  
    {  
        Iwb2 = (SHDocVw.IWebBrowser2) nativeActiveXObject;  
        Iwb2.Silent = true;  
        base.AttachInterfaces(nativeActiveXObject);  
    }  
 
    protected override void DetachInterfaces()  
    {  
        Iwb2 = null;  
        base.DetachInterfaces();  
    }  

class EWebBrowser : System.Windows.Forms.WebBrowser
{
    SHDocVw.IWebBrowser2 Iwb2;

protected override void AttachInterfaces(object nativeActiveXObject)
    {
        Iwb2 = (SHDocVw.IWebBrowser2) nativeActiveXObject;
        Iwb2.Silent = true;
        base.AttachInterfaces(nativeActiveXObject);
    }

protected override void DetachInterfaces()
    {
        Iwb2 = null;
        base.DetachInterfaces();
    }
}

I、项目中添加Micrsoft.mshtml引用
using mshtml;  
 
private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)  
{  
    IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;  
    vDocument.parentWindow.execScript(  
        "function alert(str){if(str=='zswang')confirm(str);}", "javaScript");  
}  
 
//frame结构  
private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)  
{  
    IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;  
    foreach (IHTMLElement vElement in vDocument.all)  
        if (vElement.tagName.ToUpper() == "FRAME")  
        {  
            IHTMLFrameBase2 vFrameBase2 = vElement as IHTMLFrameBase2;  
            vFrameBase2.contentWindow.execScript(  
                "function alert(str){confirm('[' + str + ']');}", "javaScript");  
        }  

using mshtml;

private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)
{
    IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;
    vDocument.parentWindow.execScript(
        "function alert(str){if(str=='zswang')confirm(str);}", "javaScript");
}

//frame结构
private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)
{
    IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;
    foreach (IHTMLElement vElement in vDocument.all)
        if (vElement.tagName.ToUpper() == "FRAME")
        {
            IHTMLFrameBase2 vFrameBase2 = vElement as IHTMLFrameBase2;
            vFrameBase2.contentWindow.execScript(
                "function alert(str){confirm('[' + str + ']');}", "javaScript");
        }
}

II、屏蔽其它窗口
   
(wb.ActiveXInstance as SHDocVw.WebBrowser).NavigateComplete2 += new
DWebBrowserEvents2_NavigateComplete2EventHandler(wb_NavigateComplete2);//wb
是一个Webbrowser控件  
 
//屏蔽一些弹出窗口  
void wb_NavigateComplete2(object pDisp, ref object URL)  
{  
    mshtml.IHTMLDocument2 doc = (wb.ActiveXInstance as SHDocVw.WebBrowser).Document as mshtml.IHTMLDocument2;  
    doc.parentWindow.execScript("window.alert=null", "javascript");  
    doc.parentWindow.execScript("window.confirm=null", "javascript");  
    doc.parentWindow.execScript("window.open=null", "javascript");  
    doc.parentWindow.execScript("window.showModalDialog=null", "javascript");  
    doc.parentWindow.execScript("window.close=null", "javascript");  

           
(wb.ActiveXInstance as SHDocVw.WebBrowser).NavigateComplete2 += new
DWebBrowserEvents2_NavigateComplete2EventHandler(wb_NavigateComplete2);//wb
是一个Webbrowser控件

//屏蔽一些弹出窗口
        void wb_NavigateComplete2(object pDisp, ref object URL)
        {
            mshtml.IHTMLDocument2 doc = (wb.ActiveXInstance as SHDocVw.WebBrowser).Document as mshtml.IHTMLDocument2;
            doc.parentWindow.execScript("window.alert=null", "javascript");
            doc.parentWindow.execScript("window.confirm=null", "javascript");
            doc.parentWindow.execScript("window.open=null", "javascript");
            doc.parentWindow.execScript("window.showModalDialog=null", "javascript");
            doc.parentWindow.execScript("window.close=null", "javascript");
        }

III、自动确定弹出对话框

Q:winform中如何实现自动点击webbrowser弹出对话框中的确定按钮

A:

view plaincopy to clipboardprint?
 //using mshtml;  
//using SHDocVw;  
private void Form1_Load(object sender, EventArgs e)  
{  
    this.webBrowser1.Navigate("http://www.a60.com.cn");  
    SHDocVw.WebBrowser wb = this.webBrowser1.ActiveXInstance as SHDocVw.WebBrowser;  
    wb.NavigateComplete2 += new SHDocVw.DWebBrowserEvents2_NavigateComplete2EventHandler(wb_NavigateComplete2);  
       
}  
 
void wb_NavigateComplete2(object pDisp, ref object URL)  
{  
    mshtml.IHTMLDocument2 doc = (this.webBrowser1.ActiveXInstance as SHDocVw.WebBrowser).Document as mshtml.IHTMLDocument2;  
    doc.parentWindow.execScript("function alert(str){return ''}", "javascript");  

         //using mshtml;
        //using SHDocVw;
        private void Form1_Load(object sender, EventArgs e)
        {
            this.webBrowser1.Navigate("http://www.a60.com.cn");
            SHDocVw.WebBrowser wb = this.webBrowser1.ActiveXInstance as SHDocVw.WebBrowser;
            wb.NavigateComplete2 += new SHDocVw.DWebBrowserEvents2_NavigateComplete2EventHandler(wb_NavigateComplete2);
            
        }

void wb_NavigateComplete2(object pDisp, ref object URL)
        {
           
mshtml.IHTMLDocument2 doc = (this.webBrowser1.ActiveXInstance as
SHDocVw.WebBrowser).Document as mshtml.IHTMLDocument2;
            doc.parentWindow.execScript("function alert(str){return ''}", "javascript");
        }

C# 禁止 Webbrowser 控件的弹出脚本错误对话框的更多相关文章

  1. 背水一战 Windows 10 (37) - 控件(弹出类): MessageDialog, ContentDialog

    [源码下载] 背水一战 Windows 10 (37) - 控件(弹出类): MessageDialog, ContentDialog 作者:webabcd 介绍背水一战 Windows 10 之 控 ...

  2. 背水一战 Windows 10 (36) - 控件(弹出类): ToolTip, Popup, PopupMenu

    [源码下载] 背水一战 Windows 10 (36) - 控件(弹出类): ToolTip, Popup, PopupMenu 作者:webabcd 介绍背水一战 Windows 10 之 控件(弹 ...

  3. 背水一战 Windows 10 (35) - 控件(弹出类): FlyoutBase, Flyout, MenuFlyout

    [源码下载] 背水一战 Windows 10 (35) - 控件(弹出类): FlyoutBase, Flyout, MenuFlyout 作者:webabcd 介绍背水一战 Windows 10 之 ...

  4. 控件(弹出类): ToolTip, Popup, PopupMenu

    示例1.ToolTip 的示例Controls/FlyoutControl/ToolTipDemo.xaml <Page x:Class="Windows10.Controls.Fly ...

  5. ocx控件避免弹出警告的类--2

    本文与 OCX控件避免弹出安全警告的类 http://www.cnblogs.com/lidabo/archive/2013/03/26/2981852.html 有些类似,只不过增加了几行代码(红色 ...

  6. 小程序中点击input控件键盘弹出时placeholder文字上移

    最近做的一个小程序项目中,出现了点击input控件键盘弹出时placeholder文字上移,刚开始以为是软键盘弹出布局上移问题是传说中典型的fixed 软键盘顶起问题,因此采纳了网上搜到的" ...

  7. WPF中禁止WebBrowser控件打开新窗口

    一.针对纯WPF的WebBrowser控件: <summary> Suppress Script Errors In WPF WebBrowser </summary> pub ...

  8. WPF 设置WebBrowser控件不弹脚本错误提示框

    using System.Reflection; using System.Windows; using System.Windows.Controls; using System.Windows.N ...

  9. OCX控件避免弹出安全警告的类

    1.要加一个头文件:         #include <objsafe.h>2.在控件头文件中加入: 1 DECLARE_INTERFACE_MAP()2 BEGIN_INTERFACE ...

随机推荐

  1. 完全用xml实现imageview点击换一张图片

    <ImageView android:layout_width="60dp" android:layout_height="60dp" android:b ...

  2. Android学习笔记:Activity生命周期详解

    进行android的开发,必须深入了解Activity的生命周期.而对这个讲述最权威.最好的莫过于google的开发文档了. 本文的讲述主要是对 http://developer.android.co ...

  3. oracle lag与lead分析函数简介

    lag与lead函数是跟偏移量相关的两个分析函数,通过这两个函数我们可以取到当前行列的偏移N行列的值 lag可以看着是正的向上的偏移 lead可以认为负的向下的偏移 具体我们来看几个例子: 我们先看下 ...

  4. js验证身份证号码

    function IdentityCodeValid(code) { var city={11:"北京",12:"天津",13:"河北",1 ...

  5. N厂劳力士黑水鬼V7出了1年,如今依旧被追捧,供不应求

    今天和大家一起来谈谈,风靡复刻界的潜航者,国人眼中的一劳永逸,何为一劳永逸,即(用这个腕表能省很多事)真的有这么牛?其实不然只要是机械腕表都会有或多或少的问题,一劳永逸更多的是指腕表的质量给力,所谓潜 ...

  6. 用python进行有进度条的圆周率计算

    一.安装tqdm函数库 tqdm是一个强大的终端进度条工具,我利用pip获取tqdm函数库. 1.打开运行,输入“cmd” 2.2:输入pip install   你要安装的库(如 pip insta ...

  7. FastDFS&lowbar;v4&period;06安装简记

    提前准备所需4个包:FastDFS_v4.06.tar.gzfastdfs-nginx-module_v1.16.tar.gzlibevent-2.0.20-stable.tar.gznginx-1. ...

  8. Linux程序的执行

    一.多任务协调机制 $ find /boot | cpio -ocB > /tmp/boot.img 程序执行方式——流式处理 “|”是匿名管道 管道分匿名管道,命名管道.匿名管道属于临时工,随 ...

  9. 分布式系统唯一ID生成方案汇总 转

    系统唯一ID是我们在设计一个系统的时候常常会遇见的问题,也常常为这个问题而纠结.生成ID的方法有很多,适应不同的场景.需求以及性能要求.所以有些比较复杂的系统会有多个ID生成的策略.下面就介绍一些常见 ...

  10. iOS开发 纯代码创建UICollectionView

    转:http://jingyan.baidu.com/article/eb9f7b6d8a81a5869364e8a6.html iOS开发 纯代码创建UICollectionView 习惯了使用xi ...