如何将主/详细数据导出到 Excel?
如何在 C# 中将主/详细数据导出到 Excel?
如果没有下拉列表,我不会有这样的想法:
这些如何完成???
How can export Master/Detail data to Excel in C#?
I wont to have some think like these without the dropdownlist:
How these can be done???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用第三方框架将数据导出到 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.