ASP.NET 将数据导出到 Word 模板
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用要替换的令牌创建了 Word 2007 .docx 文件,则可以轻松地替换服务器上的令牌,并向客户端发送基于旧文件和替换令牌的新 .docx 文件。
HttpUtility.HtmlEncode
、XmlTextWriter
实例或自定义方法将有问题的字符(<、'、"、>)替换为相应的 xml 实体将可以通过操作 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.
HttpUtility.HtmlEncode
, anXmlTextWriter
instance, or a custom method to replace the offending characters (<, ', ", >) with corresponding xml entities.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.