在 ASP.Net 页面中显示 Word 文档
我想显示一个位于我的 IIS 上的 Word 文档。我想在我的 aspx 页面上的 iFrame 内按原样显示整个文档。
我知道我可以使用 MS Word Libs,但我无法在托管应用程序的服务器上安装 Word(如果我错了,请纠正我:如果不在服务器上安装 MS Word,我无法仅使用 dll)。
如何在 iFrame 中显示 word 文档?
I want to display a word Document, which is sitting on my IIS. I want to display the whole document as is, inside a iFrame on my aspx page.
I know I can use MS Word Libs, but I cannot install Word on Server where application will be hosted, (Correct me if I am wrong: I cannot use just dlls without installing MS Word on Server).
How can I display the word document in my iFrame?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法可能是包含 Google 文档查看器。
其他方法可能是使用 Aspose.Words (商业)将Word转换为PDF,然后使用Aspose.Pdf.Kit将PDF转换为图像,然后在线显示图像。
Probably the easiest way would be to include the Google Docs Viewer.
Other ways could be to use Aspose.Words (commercial) to convert Word to PDF and then use Aspose.Pdf.Kit to convert PDF to images and then display the images online.
PowerTools for Open XML 包含一个开源、免费的从 DOCX 到 CSS 格式的 HTML 转换的实现。 HtmlConverter.cs 模块支持所有段落、字符和表格样式、字体和文本格式、编号和项目符号列表、图像等。请参阅http://bit.ly/1bclyg9
PowerTools for Open XML contains an open source, free implementation of a conversion from DOCX to HTML formatted with CSS. The module HtmlConverter.cs supports all paragraph, character, and table styles, fonts and text formatting, numbered and bulleted lists, images, and more. See http://bit.ly/1bclyg9