I am trying to display a Google Blog webpage in WebControl.
With the page index (http://googlefrance.blogspot.fr/) it’ OKs. With page Blog (eg. http://googlefrance.blogspot.fr/2012/08/elle-est-arrivee-la-nexus-7-est.html), I got black page with no content.
namespace TestLoadGoogleBlogPage
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
webBrowserGoogleBlog.Navigate("http://googlefrance.blogspot.com/"); // OK
// KO webBrowserGoogleBlog.Navigate("http://googlefrance.blogspot.com/2012/08/elle-est-arrivee-la-nexus-7-est.html");
}
}
}
I successfully loaded the page with Watin