我正在为 Web 浏览器使用 Visual Studio C# 2010。
WebBrowser 1 导航到此链接:
当它到达页面时,它会加载并冻结。
我认为网页没有问题,因为 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)
{
}
}
}