此代码将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文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)