如何将主/详细数据导出到 Excel?

发布于 2024-09-29 08:26:29 字数 343 浏览 8 评论 0原文

如何在 C# 中将主/详细数据导出到 Excel?

如果没有下拉列表,我不会有这样的想法:

http://blogs .msdn.com/blogfiles/excel/WindowsLiveWriter/CreatingaMasterDetailViewinExcel_12A09/image_thumb_5.png

这些如何完成???

How can export Master/Detail data to Excel in C#?

I wont to have some think like these without the dropdownlist:

http://blogs.msdn.com/blogfiles/excel/WindowsLiveWriter/CreatingaMasterDetailViewinExcel_12A09/image_thumb_5.png

How these can be done???

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

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

发布评论

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

评论(1

卸妝后依然美 2024-10-06 08:26:29

我建议使用第三方框架将数据导出到 Excel 模板,例如 SpreadsheetGear (www.spreadsheetgear.com)。它并不便宜,但它的工作效果相当好。

如果您不想购买或使用外部组件,您仍然可以使用 XSLT 创建和布局 Excel 文件 (https:// wikipedia.org/wiki/SpreadsheetML)。但这仅适用于 Excel 2003 及更高版本。

另一种方法可能是用 OleDB 填充现有 Excel 模板(看起来已经过时,但仍然很好了解一下:www.codeproject.com/KB/office/excel_using_oledb.aspx)。您无法使用 OleDB 来布局 Excel 文件(例如为列着色或设置特定字体)。

I recommend to use a third party framework for exporting data to Excel templates like SpreadsheetGear (www.spreadsheetgear.com). Its not cheap but it does the job pretty good.

If you dont want to buy or use an external component you could still create and layout Excel files with XSLT (https://wikipedia.org/wiki/SpreadsheetML). But this works only with Excel 2003 and above.

Another approach could be to fill an existing Excel template with OleDB (seems outdated but still good to get an idea: www.codeproject.com/KB/office/excel_using_oledb.aspx). You cannot layout the Excel file (like coloring a column or setting a specific font) with OleDB afaik.

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