当前位置:  开发笔记 > 编程语言 > 正文

在浏览器中流式传输Pdf时如何设置文件名?

如何解决《在浏览器中流式传输Pdf时如何设置文件名?》经验,为你挑选了2个好方法。

不确定如何说出这个问题...欢迎编辑!无论如何......这里去了.

我目前使用Crystal Reports生成Pdfs并将输出流式传输给用户.我的代码如下所示:

System.IO.MemoryStream stream = new System.IO.MemoryStream();

stream = (System.IO.MemoryStream)this.Report.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);

this.Response.Clear();
this.Response.Buffer = true;
this.Response.ContentType = "application/pdf";
this.Response.BinaryWrite(stream.ToArray());
this.Response.End();

运行此代码后,它将Pdf流式传输到浏览器,打开Acrobat Reader.效果很好!

我的问题是当用户尝试将文件保存为实际文件名时...在这种情况下,它默认为CrystalReportPage.pdf.无论如何我可以设置这个吗?如果是这样,怎么样?

任何帮助,将不胜感激.



1> Marc Gravell..:

通常,通过内容处置标题 - 即

Content-Disposition: inline; filename=foo.pdf

所以只需使用Headers.Add或AddHeader,或者其他任何东西,使用:

response.Headers.Add("Content-Disposition","inline; filename = foo.pdf");

(内联是"在浏览器中显示",附件是"另存为文件")



2> Mehrdad Afsh..:
System.IO.MemoryStream stream = new System.IO.MemoryStream();

stream = (System.IO.MemoryStream)this.Report.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);

this.Response.Clear();
this.Response.Buffer = true;
this.Response.ContentType = "application/pdf";
this.Response.AddHeader("Content-Disposition", "attachment; filename=\""+FILENAME+"\"");
this.Response.BinaryWrite(stream.ToArray());
this.Response.End();

推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有