【着急求助】webbrowser百度截图不能实现

我用c# webbrowser制作一个浏览器,现在有个功能就是截取浏览的内容,然后保存起来;我想要的是后台截取图片在存储起来,但是不知道为什么百度的和某宝的截取不了,是空白的,别的网站都可以,求大神指点!!!

//后台截图方法:
Bitmap bit1 = new Bitmap(web.Width, web.Height);
web.DrawToBitmap(bit1, new Rectangle(0, 0, web.Width, web.Height));
int border = (web.Width - web.ClientSize.Width) / 2;//边框宽度
int caption = (web.Height - web.ClientSize.Height) - border;//标题栏高度
Bitmap bit2 = bit1.Clone(new Rectangle(border, caption, web.ClientSize.Width, web.ClientSize.Height), System.Drawing.Imaging.PixelFormat.Format24bppRgb);

        Clipboard.SetImage(bit2);      //暂时放到剪切板测试
       // bit2.Dispose();
        //bit1.Dispose();

http://tieba.baidu.com/p/4108920127