WebBrowser控制会话中的下载文件

时间:2010-11-20 08:13:49

标签: c# .net webbrowser-control webclient

我正在使用WebBrowser control浏览登录页面并下载文件。由于我无法使用控件自动管理下载,因此我正在使用WebClient类来尝试实现此目的。

问题是,由于WebClient与我所下载的浏览器不在同一个上下文/会话中,因此是安全错误屏幕。

关于如何将WebBrowser会话的上下文传递给WebClient的任何想法?

2 个答案:

答案 0 :(得分:11)

在搜索解决方案一周后,我发现了一个非常简单的问题!

我是您在HTTPS URL中静默下载文件的方法,而webbrowser控件只是这样做。

1)使用webbrowser登录  2)使用此代码下载。

//build de URL 

  string _url = "https://........."

  //define a download file name and location

  string _filename = @"C:\Users\John\Documents\somefile.pdf";

  //create a webcliente

  WebClient cliente = new WebClient();

  //do some magic here (pass the webbrowser cokies to the webclient)

  cliente.Headers.Add(HttpRequestHeader.Cookie, webBrowser1.Document.Cookie);

  //and just download the file

  cliente.DownloadFile(_urlpdf, _filename);

它解决了我的问题

答案 1 :(得分:3)

应该只是在WebBrowser会话中模拟cookie和标头并重新使用它们来模拟WebClient中的会话,但看起来你已经在那条路上炙手可热。

以下是我的进展方式。

  1. 从WebBrowser获取Cookie和标题。

    Cookie:您可以通过处理WebBrowser控件的DocumentCompleted事件并从DocumentCompleted事件中解析Cookie集,从WebBrowser会话中获取Cookie。

    标题:使用像Fiddler [www.fiddler2.com/]这样的代理来阅读标题,这样您就可以知道服务器需要什么。

  2. 利用上面针对WebClient收集的身份。

    标题:迭代所有收集的标题,并确保added to the webclient使用myWebClient.Headers.Add("Content-Type","application/x-www-form-urlencoded");例如

    Cookie:请参阅this post