2

我正在为 Web 浏览器使用 Visual Studio C# 2010。

WebBrowser 1 导航到此链接:

http://www.costco.com/IOGEAR-Wireless-1080p-HDMI-Transmitter-and-Receiver-3D-Compatible-2x-HDMI-Ports.product.100011675.html

当它到达页面时,它会加载并冻结。

我认为网页没有问题,因为 chrome、firefox 和常规 IE9 根本不会冻结。

只有我的 c# 程序中的 Web 浏览器在导航到此链接时才会冻结。

如何防止它冻结?该网页似乎正在从另一个站点调用一些 html 数据。

我尝试将此代码添加到我的程序中

this.webBrowser1.ScriptErrorsSuppressed = true;

我还更改了 Web 浏览器的注册表值,以便它使用 Internet Explorer 版本 9,但到目前为止这两个都不起作用。

这是我正在使用的代码

 using System;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.Data;
 using System.Drawing;
 using System.Linq;
 using System.Text;
 using System.Windows.Forms;

 namespace WindowsFormsApplication1
 {
     public partial class Form1 : Form
     {
         public Form1()
    {
        InitializeComponent();

        webBrowser1.ScriptErrorsSuppressed = true;
   }

    private void button1_Click(object sender, EventArgs e)
    {
        webBrowser1.Navigate("http://www.costco.com/IOGEAR-Wireless-1080p-HDMI-Transmitter-and-Receiver-3D-Compatible-2x-HDMI-Ports.product.100011675.html");
    }

    private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    {

         }
     }
 }
4

1 回答 1

5

问题不在于 WebBrowser 控件本身,而在于该特定网站如何尝试执行一些陷入循环的 Javascript。

比较和对比:

1) 将网址更改为http://google.com。工作正常。

2) 现在。为 Navigating 事件添加事件处理程序。就像是:

this.webBrowser1.Navigating += new System.Windows.Forms.WebBrowserNavigatingEventHandler(this.webBrowser1_Navigating);

private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e)
{
    Console.WriteLine("Navigating to: " + e.Url);
}

您将看到有一个 JavaScript 函数不断尝试重定向页面。这是我的控制台输出中显示的内容(无限期地继续):

Navigating to: javascript:void((function(){document.open();document.domain='costco.com';document.write('<!DOCTYPE html>');document.close();})())
Navigating to: about:blank
Navigating to: javascript:void((function(){document.open();document.domain='costco.com';document.write('<!DOCTYPE html>');document.close();})())
Navigating to: about:blank
Navigating to: javascript:void((function(){document.open();document.domain='costco.com';document.write('<!DOCTYPE html>');document.close();})())
Navigating to: about:blank
Navigating to: javascript:void((function(){document.open();document.domain='costco.com';document.write('<!DOCTYPE html>');document.close();})())

这使得 webBrowser 控件基本上无法使用。

编辑: 好的,一个解决方法(这可能很糟糕,但令人沮丧的是奇怪的重定向循环只发生在 WebBrowser 控件的浏览器中)。

如果在另一个 Navigating 事件完成之前阻止调用 Navigating 事件,它会加载页面并且不会冻结,并且链接似乎可以工作。它是这样的:

 private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)
    {
        Console.WriteLine("Navigated to: " + e.Url);
        isNavigating = false;
        webBrowser1.AllowNavigation = true;
    }

    bool isNavigating = false;
    private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e)
    {
        if (isNavigating && e.Url.ToString().Contains("javascript:void((function(){document.open();document.domain='costco.com'"))
        {
            webBrowser1.Stop();
            webBrowser1.AllowNavigation = false;
            return;
        }

        isNavigating = true;
        Console.WriteLine("Navigating to: " + e.Url);
    }
于 2013-08-23T19:32:35.097 回答