ASP.NET 将数据导出到 Word 模板

发布于 2024-10-12 23:17:40 字数 259 浏览 2 评论 0原文

我在 Word 2007 模板中有几个套用信函。我需要从我的 Web 表单应用程序(Sql Server 2008 后端)传递数据。

我需要尽可能无缝地完成此操作,因此生成一个文本文件供 word 用作数据源不是一个选项。出于性能原因,我还想避免在 Web 服务器上运行 Office。

我想知道是否有一种方法可以将模板 xml 存储在我的数据库中,并在需要生成字母时用我的数据填充适当的元素,并将此文件直接下载到用户计算机。

有人有解决此类问题的方法吗?

I have several form letters in Word 2007 templates. I need to pass data from my web forms application(Sql Server 2008 backend).

I need to do this as seamlessly as possible so generating a text file for word to use as a datasource is not an option. I also want to avoid running Office on my web server for performance reasons.

I am wondering if there is a way to store the template xml in my database and populate the proper elements with my data when the letters need to be generated, and having this file downloaded directly to the users machine.

Does anyone have a solution for this type of issue?

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

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

发布评论

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

评论(1

晒暮凉 2024-10-19 23:17:40

如果您使用要替换的令牌创建了 Word 2007 .docx 文件,则可以轻松地替换服务器上的令牌,并向客户端发送基于旧文件和替换令牌的新 .docx 文件。

  1. 将模板创建为 .docx 文件并将其保存在服务器上 使用
  2. 易于查找和解析的占位符更改所有邮件合并字段,这些占位符通常不会出现在文档中,也不需要 XML 编码。例如:{{FirstName}}。
  3. 为要生成的每个文档创建一个新的空白 .docx (zip) 文件
  4. 从模板 .docx 文件中读取每个文件
  5. 在读取源文件时,根据需要搜索并替换标记
  6. 确保对您生成的所有文本进行 XML 编码放入新文档中。您可以使用 HttpUtility.HtmlEncodeXmlTextWriter 实例或自定义方法将有问题的字符(<、'、"、>)替换为相应的 xml 实体将
  7. 文件发送到客户端

可以通过操作 WordML 标签来完成更复杂的事情,但如果您只想替换一些变量数据,上述方法将是最简单/快速的方法。

If you create a Word 2007 .docx file with tokens that you want to replace you can then easily replace the tokens on a server and send the client a new .docx file based on the old one with replaced tokens.

  1. Create your template as a .docx file and save it on the server
  2. Change all your mail-merge fields with easy to find and parse placeholders that are not going to appear int he document normally and will not require XML encoding. For example: {{FirstName}}.
  3. Create a new blank .docx (zip) file for each document you want to generate
  4. Read each file from inside the template .docx file
  5. As you read the source file, search for and replace your tokens as appropriate
  6. Be sure the XML Encode all text you put in the new document. You can either use HttpUtility.HtmlEncode, an XmlTextWriter instance, or a custom method to replace the offending characters (<, ', ", >) with corresponding xml entities.
  7. Send file to client

More complicated things could be done by manipulating the WordML tags but if you just want to replace some variable data, the above would be easiest/fasted method.

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