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

c# – 使用ASP.NET MVC导出PDF文件,第1张

概述我有一个ASP.NET MVC4应用程序,我想将html页面导出为PDF文件,我使用此代码,它的工作正常: code 此代码将html页面转换为在线PDF,我想直接下载该文件. 如何更改此代码以获得此结果? 使用FileContentResult: protected FileContentResult ViewPdf(string pageTitle, string viewName, obje 我有一个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");}
总结

以上是内存溢出为你收集整理的c# – 使用ASP.NET MVC导出PDF文件全部内容,希望文章能够帮你解决c# – 使用ASP.NET MVC导出PDF文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1262928.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存