I currently have a program I have been working on that uses GeckoFX which is a webbrowser control for its backend. It works fine if I have it load a site such as google, however this specific site is crashing the browser no matter what and I cannot debug it. Can anyone help me figure out exactly how to stop it from crashing the whole program?

private void Form1_Load(object sender, EventArgs e)
        {
            try
            {
                GeckoWebBrowser wb = new GeckoWebBrowser();
                wb.Dock = DockStyle.Fill;
                panel1.Controls.Add(wb);
                wb.Navigate("http://clixbisnis.site88.net");
            }
            catch (Exception ex)
            {
            }
        }

Recommended Answers

All 2 Replies

Posting it on the GeckoFX support site would be my first action.

Already have to no avail, I was hoping maybe someone else here might have a better idea.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.