将 doc 转换为 html 和 pdf
我们如何在 Web 应用程序中使用 C# 将 doc 文件转换为 html 和 pdf 文件?
我正在制作一个网络应用程序,我想在用户单击所需的按钮后立即将 doc 文件转换为 html 和 pdf
How can we convert a doc file into an html and a pdf file using c# in a web application?
I am making a web application and i want to convert a doc file into html and pdf as soon as the user clicks on the desired button
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想将 Word 文档转换为纯 html,则需要运行一个函数,从 Word 文档中去除所有垃圾字符。您将重新创建自己的基本 CMS。
如果要将 Word 文档转换为 PDF,则需要在 Microsoft 服务器上运行 Microsoft Office,并且购买在服务器上使用 Office 的许可证变得相当复杂且昂贵。
如果您只想将 Word 文档上传到服务器,则可以使用 Google Doc Viewer 在线显示它,无需任何转换。 这是一篇关于如何嵌入文档的简短文章在网站上。所需要的只是一小段代码:
If you want to convert a word doc to pure html, you will need to run a function that strips all of the garbage characters from your word document.. you would be recreating your own basic CMS.
If you want to convert a word doc to PDF, you will need to run Microsoft Office on a Microsoft server and it gets quite complex and expensive to buy licences for using Office on the server.
If you want to simply upload a word doc to a server, you can display it online using Google Doc Viewer without any conversion. Here is an short article on how to embed a document on a website. All that is required is a short amount of code: