【问题标题】:Show PDF FILE within an asp ModalPopupExtender using C# asp.net使用 C# asp.net 在 asp ModalPopupExtender 中显示 PDF 文件
【发布时间】:2014-02-24 02:08:34
【问题描述】:

我需要显示一个保存在数据库中的pdf文件并使用asp ModalPopupExtender显示它

我有闲置代码

 Byte[] PDF = t.ReturnPDF(NamePDF);
 Response.ContentType = "application/pdf";
 Response.AddHeader("content-length", "attachment; filename=" + "NamePDF");
 Response.BinaryWrite(PDF);
 Response.Flush();
 Response.Close();

这很好用(它在网站上显示 pdf)但是我不知道如何在 asp ModalPopupExtender 中显示它。有什么建议或您做过类似的事情可以解决我的问题吗?

非常感谢。

【问题讨论】:

  • 我认为您无法在 modalpopupextender 中显示 pdf。

标签: c# asp.net twitter-bootstrap webforms modalpopupextender


【解决方案1】:

您必须使用 iFrame。但是,您会遇到浏览器问题,因为并非所有浏览器都可以内联呈现 PDF。看到这个相关的answer from aam1r here

【讨论】:

    猜你喜欢
    • 2011-03-21
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-03-26
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多