我正在尝试在 WebControl 中显示 Google 博客网页。
使用页面索引 ( 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");
}
}
}