将动态生成的Web浏览器控件内容导出到Excel

发布于 2024-11-30 01:19:57 字数 205 浏览 4 评论 0原文

我有一个 Windows 应用程序,其中使用 webbrowser 控件显示 html 报告。 webbrowser 控件的内容是动态生成的,并提供如下

 webbrowser1.DocumentText=htmlString;

现在我想通过单击“导出到 Excel 按钮”将 webbrowser 控件内容导出到 Excel。

I have a windows application in which an html report is displayed using the webbrowser control. The content of webbrrowser control is generated dynamically and provided as below

 webbrowser1.DocumentText=htmlString;

Now I want to export the webbrowser control content to excel on clicking the "Export to Excel button".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残龙傲雪 2024-12-07 01:19:57

您可以做的第一件事就是创建一个 Excel 模板。您可以打开此模板进行编辑并将其保存到其他位置。此示例片段可以帮助您。

        using System;
        using Excel = Microsoft.Office.Interop.Excel;

        class Program
        {
            static void Main(string[] args)
            {
                var excelApplication = new Excel.Application { Visible = false, DisplayAlerts = false };
                Excel.Workbook excelWorkBook = excelApplication.Workbooks.Open(Filename: @"C:\temp\YourTemplate.xlsx");
                Excel.Worksheet targetedExcelSheet = (Excel.Worksheet)excelApplication.ActiveWorkbook.Sheets[1];
                Excel.Range ATrialRange = targetedExcelSheet.Range["F4", Type.Missing];
                ATrialRange.Value2 = "The values that you have parsed from your html string";
                excelWorkBook.SaveAs(Filename: @"C:\temp\YourNewlyGenerated.xlsx");
                excelWorkBook.Close();
                excelApplication.Quit();    
            }
        }

您可以使用 html agility pack 来解析您的 html。

First thing you can do is to create an excel template. Than you can open this template edit it and save it to a different location . This sample snippet can help you.

        using System;
        using Excel = Microsoft.Office.Interop.Excel;

        class Program
        {
            static void Main(string[] args)
            {
                var excelApplication = new Excel.Application { Visible = false, DisplayAlerts = false };
                Excel.Workbook excelWorkBook = excelApplication.Workbooks.Open(Filename: @"C:\temp\YourTemplate.xlsx");
                Excel.Worksheet targetedExcelSheet = (Excel.Worksheet)excelApplication.ActiveWorkbook.Sheets[1];
                Excel.Range ATrialRange = targetedExcelSheet.Range["F4", Type.Missing];
                ATrialRange.Value2 = "The values that you have parsed from your html string";
                excelWorkBook.SaveAs(Filename: @"C:\temp\YourNewlyGenerated.xlsx");
                excelWorkBook.Close();
                excelApplication.Quit();    
            }
        }

You can use html agility pack to parse your html.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文