如何将 ASP.NET 页面导出到 MS Word(带页眉、页脚)
SQL Server 数据库中的文档表是:
id
title
content
first_name
last_name
department
logo
如何使用如下图所示的模板导出到 Word。
document table in SQL server database is :
id
title
content
first_name
last_name
department
logo
How can i export to word with template like image below.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要使用 OpenXML SDK 来实现您想要的目标。
DocX API - docx.codeplex.com。是 Open XML SDK 的一个非常好的、简单的替代品。
You need to use OpenXML SDK to achieve what you are looking for.
DocX API - docx.codeplex.com. is a really good and easy alternative to Open XML SDK.
您可以创建一个模板 Word 文档,其中内容控件作为动态数据的占位符,然后使用 OpenXML SDK 在内容控件中插入数据。
You could create a template word document with content controls as placeholders for dynamic data, and then use the OpenXML SDK to insert data in the content controls.
您可以尝试使用 http://www .aspose.com/categories/.net-components/aspose.words-for-.net/default.aspx 使用 MailMerge 或从头开始创建文档。
You could try using http://www.aspose.com/categories/.net-components/aspose.words-for-.net/default.aspx either with MailMerge or create the document from scratch.