C#Webbrowser中屏蔽弹出窗⼝及脚本错误提⽰
当IE浏览器遇到脚本错误时浏览器,左下⾓会出现⼀个黄⾊图标,点击可以查看脚本错误的详细信息,并不会有弹出的错误信息框。当我们使⽤WebBrowser控件时有错误信息框弹出,这样程序显的很不友好,⽽且会让⼀些⾃动执⾏的程序暂停。我看到有⼈采取的解决⽅案是做⼀个窗体杀⼿程序来关闭弹出的窗体。今天探讨的⽅法是从控件解决问题。
1、SHDocVw.dll
在COM时代我们使⽤的WebBrowser控件是SHDocVw.dll。屏蔽错误信息的⽅法很简单使⽤下⾯的⼀句就可以搞定。
WebBrowser1.Silent = true;
2、.Net中
在.Net中提供了托管的WebBrowser可供我们使⽤,当然我们仍然可以在.Net中使⽤COM组建SHDocVw.dll,如果使⽤SHDocVw.dll
处理错误⽅式和上⾯的⽅法⼀样。但如果我们是使⽤.Net组件如何解决这个问题呢?
在.Net中提供了托管的WebBrowser可供我们使⽤,当然我们仍然可以在.Net中使⽤COM组建SHDocVw.dll,如果使⽤SHDocVw.dll
处理错误⽅式和上⾯的⽅法⼀样。但如果我们是使⽤.Net组件如何解决这个问题呢?
webBrowser1.ScriptErrorsSuppressed = true;
(据说在 framework2.0以前是这样,我没有使⽤过)
那么在 framework2.0中如何解决这个问题呢?
有⼀种⽅法不能彻底解决,可以部分解决问题这⾥也介绍给⼤家。
//捕获控件的错误
this.WebBrowser.Document.Window.Error += new HtmlElementErrorEventHandler(Window_Error);
//对错误进⾏处理
void Window_Error(object sender, HtmlElementErrorEventArgs e)
{
// ⾃⼰的处理代码
e.Handled = true;
}
3、上⾯的⽅法对于多个框架嵌套等等的情形还是不能很好的解决。
为了彻底解决这个问题,我们借助AxWebBrowser来解决WebBrowser的问题。
我们定义⼀个⾃⼰的类,他的⽗类是WebBrowser,以后使⽤这个类就可以了。在这个类的定义中需要引⽤SHDocVw。
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();
}
}
//项⽬中添加Micrsoft.mshtml引⽤
using mshtml;
private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)
{
IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;
Script(
"function alert(str){if(str=='zswang')confirm(str);}", "javaScript");
}
//frame结构html document是什么
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;
"function alert(str){confirm('[' + str + ']');}", "javaScript");
}
}
4、屏蔽其它窗⼝
(wb.ActiveXInstance as SHDocVw.WebBrowser).NavigateComplete2 += new DWebBrowserEvents2_NavigateComplete2EventHandler(wb_Naviga
//屏蔽⼀些弹出窗⼝
void wb_NavigateComplete2(object pDisp, ref object URL)
{
mshtml.IHTMLDocument2 doc = (wb.ActiveXInstance as SHDocVw.WebBrowser).Document as mshtml.IHTMLDocument2;
Script("window.alert=null", "javascript");
Script("firm=null", "javascript");
Script("window.open=null", "javascript");
Script("window.showModalDialog=null", "javascript");
Script("window.close=null", "javascript");
5、⾃动确定弹出对话框
Q:winform中如何实现⾃动点击webbrowser弹出对话框中的确定按钮
A:
//using mshtml;
//using SHDocVw;
private void Form1_Load(object sender, EventArgs e)
{
this.webBrowser1.Navigate("localhost:28512/WebSite2/Default.aspx");
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;
Script("function alert(str){return ''}", "javascript");
}
6、C#集成的WebBrowser解决⽅案。
将WebBrowser控件ScriptErrorsSuppressed 设置为True,可禁⽌弹出脚本错误对话框,ScriptErrorsSuppressed属性是对其基础COM控件的Silent属性的封装,因此设置ScriptErrorsSuppressed属性和设置其基础COM控件的Slient属性是效果⼀样的,这⼀点通过反编译System.Windows.Forms程序集可以证实。
为了解决这个问题,有的⼈专门从WebBrowser派⽣出⼀个新类,然后重写了AttachInterfaces⽅法,其实也是没有必要的,效果和直接设置ScriptErrorsSuppressed属性相同。
不过要注意的是:
ScriptErrorsSuppressed 设置为True会禁⽤所有的对话框,⽐如提⽰Activex下载、执⾏以及安全登录等对话框。
如果不想禁⽌除脚本错误之外的对话框,请使⽤MSDN上的代码⽰例:
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;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。