我正在使用windows.Forms.WebBrowser c#下载文件,在运行InvokeScript之后,获取我的文件我使用Application.DoEvents继续前进到我的下一个文件,但是下载对话框保持打开状态并且我卡在应用程序上。 DoEvents,什么都不能做。
如何取消或关闭此下载对话框?
我的代码:
HtmlElement head = webBrowser.Document.GetElementById("btnExcelExport");
HtmlElement scriptEl = webBrowser.Document.CreateElement("script");
IHTMLScriptElement element = (IHTMLScriptElement)scriptEl.DomElement;
element.text = "function DownloadFile() {$('#btnExcelExport').click()}";
head.AppendChild(scriptEl);
webBrowser.Document.InvokeScript("DownloadFile");
HtmlElementCollection iFrames = webBrowser.Document.GetElementsByTagName("iframe");
for (int i = 0; i < iFrames.Count; i++)
{
string src = iFrames[i].GetAttribute("src");
if (src.Contains("Export"))
{
txt_url.Text = "https://test.com" + src;
string cooki = webBrowser.Document.Cookie;
int response = URLDownloadToFile(0, "https://test.com" + src, @"C:\temp\Test.txt", 0, 0);
}
}
Application.DoEvents();
//....got to next file
答案 0 :(得分:0)
我知道我的问题出了问题,以及为什么我会降低速率,但无论如何我找到了这个解决方案。
您需要使用导航事件并检查您是否在下载网址中使用取消下载“e.Cancel = true”
private void webBrowser_Navigating(object sender,WebBrowserNavigatingEventArgs e)
{
if (e.Url.ToString().Contains("Download"))
{
e.Cancel = true;
}
}