使用 MVC 3 打印 Migradoc 文档
在我的应用程序中,我需要能够创建一个 PDF 报告,包含页眉/页脚、图片、文本等。现在我找到了一个图书馆 migradoc,但我无法找到自动取款机。如何打印/显示当用户按下“创建”按钮时正在创建的文件?
在 PdfSharp 中,我只能说 document.Save(Url)
和 Process.Start(url)
,但我不能用 Migradoc 做同样的事情。
In my application ,I need to be able to create a PDF report, with header/footer, pictures, text and so on. Right now I have found a librabry migradoc, and i can't figure out atm. how to print/show the file which is getting created when user push "Create" button?
In PdfSharp I can just say document.Save(Url)
and Process.Start(url)
, but I can't do the same with Migradoc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MigraDoc 使用 PDFsharp。您只需调用“保存”并启动,就像使用 PDFsharp 一样:
MigraDoc 附带的 HelloWorld 示例中的代码片段。
另请参阅:
http://www.pdfsharp.net/wiki/MigraDocHelloWorld-sample.ashx
MigraDoc uses PDFsharp. You just have to call Save and Start, just like you do with PDFsharp:
Code snippet from the HelloWorld sample that comes with MigraDoc.
See also:
http://www.pdfsharp.net/wiki/MigraDocHelloWorld-sample.ashx