在ASP.NET 1.1中的FileSystem下写入Excel文件

发布于 2024-07-14 15:36:19 字数 137 浏览 9 评论 0原文

我想在文件系统下写入一个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 技术交流群。

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

发布评论

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

评论(4

故乡的云 2024-07-21 15:36:19

将制表符分隔的数据写入文本文件,并以“.xls”扩展名保存。 Excel 应该能够读取该内容。

Write tab delimited data to a text file, save with ".xls " extension. Excel should be able to read that.

酒与心事 2024-07-21 15:36:19

如果您无法使用 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.

软甜啾 2024-07-21 15:36:19

如果您无法在服务器上安装 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

温馨耳语 2024-07-21 15:36:19

您可以使用此处提供的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.

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