将动态生成的Web浏览器控件内容导出到Excel
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以做的第一件事就是创建一个 Excel 模板。您可以打开此模板进行编辑并将其保存到其他位置。此示例片段可以帮助您。
您可以使用 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.
You can use html agility pack to parse your html.