在新页面中打开PDF

时间:2012-04-18 20:55:45

标签: c# asp.net pdf

我创建了一个PDF,我试图在新窗口中打开它(或新标签,但我现在正在使用新窗口)

这是我的aspx代码。链接按钮位于Panel中的GridView中,它位于更新面板中(是的,我看到人们在更新面板时出现问题,但我必须这样做。)

<ItemTemplate>
     <asp:LinkButton ID="ReportLink" runat="server" CommandName="GenReport" 
          CommandArgument='<%# Container.DataItemIndex %>' 
          OnClientClick="LoadPDF()" PostBackUrl="~/Indices/myPDF.aspx"
          Text="View Report" ToolTip="Genereate a PDF of the Report"></asp:LinkButton>
</ItemTemplate>

这是我的javascript打开新窗口

function LoadPDF() {
    window.open('myPDF.aspx', '',
    'scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');
}

这是C#。第一个片段是单击链接按钮时调用的内容(在javascript之后)。第二种是实际创建PDF并尝试将其发送到新窗口的方法。

{
     DataTable dt = (DataTable)Session["IndexTable"]; //copy of the GirdView
     int rowIndex = Convert.ToInt32(e.CommandArgument.ToString());
     DataRow row = dt.Rows[rowIndex];
     GenerateReport(row["ITEM_ID"].ToString());
}

private void GenerateReport(string itemID)
{
    OracleConnection connection = new OracleConnection(connstr);
    try
    {
        connection.Open();

        //code here omitted, all sql and setting up info for the doc
        // giving TurnOverData a dataset

        ReportDocument doc = new ReportDocument();
        doc.FileName = Server.MapPath("myRpt.rpt");
        doc.SetDataSource(TurnoverData);


        //here adding parameters to doc

        System.IO.MemoryStream stream = (System.IO.MemoryStream)doc.ExportToStream(ExportFormatType.PortableDocFormat);//leftover code from previous functionality (i dont think it is doing anything)

       BinaryReader Bin = new BinaryReader(doc.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat));
        Response.ClearContent();
        Response.ClearHeaders();
        Response.ContentType="application/pdf";
        Response.BinaryWrite(Bin.ReadBytes(Convert.ToInt32(Bin.BaseStream.Length)));
        Response.Flush();
        Response.Close();


    }
    catch (Exception ex)
    {
        Logger.logError("GenerateReport()  " + ex.Message);
        Utilities.SendAnAlert(this, "An error occurred while generating PDF file and the file could not be displayed.");
    }
    finally
    {
        connection.Close();
        connection.Dispose();
    }
}

提前致谢

更新

经过我们的旧代码挖掘后,我找到了一个解决方法。你们给我建议的几乎所有代码都已经在我们的代码中,我只需要弄清楚如何使用我们拥有的代码。我最终使用了我的LoadPDF函数但是必须传递一个字符串参数,因为url使用了“?=”我必须填写。我非常感谢所有帮助!

2 个答案:

答案 0 :(得分:1)

为什么需要通过javascript完成?

会不会

<a href="myPDF.aspx" target="_blank">blah</a>

诀窍?

修改

我做了一些研究,但您错误地使用了Request.Close()。根据{{​​3}},该方法“不适用于正常的HTTP请求处理”。

也许您应该使用Request.End()代替。

更改该行应修复它,但我也会考虑更改

        System.IO.MemoryStream stream = (System.IO.MemoryStream)doc.ExportToStream(ExportFormatType.PortableDocFormat);//leftover code from previous functionality (i dont think it is doing anything)

        BinaryReader Bin = new BinaryReader(doc.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat));
        Response.ClearContent();
        Response.ClearHeaders();
        Response.ContentType="application/pdf";
        Response.BinaryWrite(Bin.ReadBytes(Convert.ToInt32(Bin.BaseStream.Length)));
        Response.Flush();

更像是

        System.IO.MemoryStream stream = (System.IO.MemoryStream)doc.ExportToStream(ExportFormatType.PortableDocFormat);

        Response.ClearHeaders();
        Response.ClearContent();
        Response.ContentType="application/pdf";
        stream.CopyTo(Response.OutputStream);
        Response.Flush();

但如果它有效,它就有效。

答案 1 :(得分:1)

尝试在回复中添加Content-Disposition / Content-Length标头:

Response.AddHeader("Content-Disposition", "inline; filename=\"report.pdf\"");
Response.AddHeader("Content-Length", Bin.BaseStream.Length);