微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 使用ASP.NET MVC导出PDF文件

我有一个ASP.NET MVC4应用程序,我想将html页面导出为PDF文件,我使用此代码,它的工作正常: code

代码将html页面转换为在线PDF,我想直接下载该文件.

如何更改此代码以获得此结果?

解决方法

使用FileContentResult:
protected FileContentResult ViewPdf(string pageTitle,string viewName,object model)
{
    // Render the view html to a string.
    string htmlText = this.htmlVieWrenderer.RenderViewToString(this,viewName,model);

    // Let the html be rendered into a PDF document through iTextSharp.
    byte[] buffer = standardPdfRenderer.Render(htmlText,pageTitle);

    // Return the PDF as a binary stream to the client.
    return File(buffer,"application/pdf","file.pdf");
}

原文地址:https://www.jb51.cc/csharp/91909.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐