-2

在 C# windows 应用程序中,我正在使用 WebBrowser Control 并加载页面。我可以将所需的输入详细信息推送到下拉列表中,还可以点击按钮。它向我显示了带有下载文件链接的记录列表。我想单击并将文档保存在我的 c# windows 应用程序中。我怎样才能做到这一点?

http://www.ceoandhra.nic.in/ceonew/home.aspx

在此站点中,单击 PDF Electrol Rolls。

请帮帮我......

4

1 回答 1

0

web-client如果要保存文件,可以使用。URL 应该是一个文件

 string extension = Path.GetExtension(url.ToString());
            List<string> imageFormats = new List<string>() { ".bmp",".dib",".jpg",".jpeg",".jpe",".jfif",".gif",".tif","tiff",".png",".ico"};
            List<string> mswordFormats = new List<string>() { ".doc", ".docx" };
            if (imageFormats.Contains(extension) || mswordFormats.Contains(extension) || extension.Equals(".pdf"))
            {
                string fileName = "download"+ extension;
                WebClient wc = new WebClient();
                wc.DownloadFile(url, fileName);
            }
于 2012-11-07T01:24:17.040 回答