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

前端之家收集整理的这篇文章主要介绍了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.f2er.com/csharp/91909.html

猜你在找的C#相关文章