0

我正在使用 webBrowser 控件登录并从锚标记获取下载链接。该链接包含一个动态生成的 .csv 文件(即使没有登录也无法访问此文件)。

我的下载代码看起来像

Dim rLink = curElement.GetAttribute("href").ToString()
Dim myWebClient As New WebClient()
myWebClient.Headers.Add(HttpRequestHeader.Cookie, WebBrowser1.Document.Cookie)
myWebClient.DownloadFile(rLink, "report.csv")

上面的代码在 DocumentCompleted 事件上触发

4

0 回答 0