Word 2010 不支持 XML 方案...有其他选择吗? (asp.net)
我正在寻找从 Word 模板(asp.net)创建/更改 doc/docx 文件的新替代方案。过去我使用 XML 方案创建文档,但由于 i4i case Word 2010 不支持它们。 Microsoft 建议使用自定义控件,但我有大量文档,其中包含相当多动态生成的表,并且我认为这些控件不是一个好的解决方案。
有没有人有类似于 XML 方案的替代方案?
I'm looking for new alternatives in creating/changing doc/docx files from word template (asp.net). In the past I was creating documents using XML schemes, but since i4i case Word 2010 don't support them. Microsoft suggests custom controls, but I have large documents with quite a few dynamically generated tables and I don't think that these controls are a good solution.
Does anyone have any alternatives similar to XML Schemes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Microsoft 的 Open XML SDK 2.0 。
然后,您可以使用 Simple OOXML 项目开始。
不适用于旧版 Office 文档(即 doc/xls),仅适用于 docx 和 xslx 等新文档。
提示:docx/xslx 实际上是一个充满 xml 文档的 zip 文件。只需将扩展名更改为 zip 即可。
Check out the Open XML SDK 2.0 from Microsoft.
Then you can use the Simple OOXML project to get you started.
Does not work for legacy office documents (i.e. doc/xls) only the new ones like docx and xslx.
hint: a docx/xslx is really a zip file full of xml documents. just change the extension to zip.