在ASP.NET 1.1中的FileSystem下写入Excel文件
我想在文件系统下写入一个Excel文件。 Excel文件的数据源将来自SQL Server 2000,以DataSet/DataTable的形式。 我的工作场所不允许使用 COM InterOp。 用户正在使用各种Excel版本; 97 - 2003。
I would like to write an Excel file under file system. The data source for the excel file will come from SQL Server 2000 in the form of DataSet/DataTable. COM InterOp is not allowed to use in my workplace. The users are using various Excel version; 97 - 2003.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将制表符分隔的数据写入文本文件,并以“.xls”扩展名保存。 Excel 应该能够读取该内容。
Write tab delimited data to a text file, save with ".xls " extension. Excel should be able to read that.
如果您无法使用 COM Interop,则无法在代码中以编程方式创建 Excel 工作簿/工作表。
不过,您可以创建一个 DTS 包,该包可以创建您需要的 Excel 文件,但不允许您执行合并操作或数据格式化。
您可以有一个预先格式化的工作表,然后每次都会填充该工作表。
If you can't use COM Interop, then you can't programmtically create an Excel workbook/worksheet in code.
You could however create a DTS package that could create the Excel file you need, but would not allow you to perform merge operations or formatting of the data.
You could have a pre-formatted sheet that is then populated each time though.
如果您无法在服务器上安装 Excel 并使用 COM Interop,也可以。
看看 Aspose Cell
他们有一个专门解决这个问题的解决方案
Ok if you can't have Excel installed on the server and use COM Interop.
Take a look at Aspose Cell
They have a solution specifically to get around this problem
您可以使用此处提供的ExmWriter dll。它很方便,但功能有限。 将您的 Excel 文件保存为 xml Sheet 2003 格式。
you can use ExmWriter dll provided here .Its handy but with limited features. saves ur excel files as xml sheet 2003 format.