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)
{
}
}