WebControlでGoogleブログのWebページを表示しようとしています。
ページインデックス(http://googlefrance.blogspot.fr/)を使用すれば、問題ありません。ページブログ(例: http: //googlefrance.blogspot.fr/2012/08/elle-est-arrivee-la-nexus-7-est.html)で、コンテンツのない黒いページが表示されました。
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");
}
}
}