无法从我的asp:按钮生成pdf文件

时间:2013-08-14 09:31:58

标签: c# asp.net pdf itextsharp

我访问了iTextSharp参考,我使用他们的示例代码编写出一种pdf格式。这是我btnPDF的源代码

<asp:Button ID="btnPDF" runat="server" Text="Download PDF of Officer's Profile" OnClick="btnPDF_Click" Enabled="false" />

当用户选择gridview数据时,btnPDF将更改为Enable = true。因此,当btnPDF启用为true时,并且当用户单击pdf按钮时,它应该生成PDF并运行我之后没有的代码。这就是我的btnPDF实际上的样子。我不太确定是因为按钮问题还是pdf问题的产生。

protected void btnPDF_Click(object sender, EventArgs e)
{
    Byte[] bytes;

    using (var MS = new System.IO.MemoryStream())
    {
        var doc = new iTextSharp.text.Document();
        var writer = iTextSharp.text.pdf.PdfWriter.GetInstance(doc, MS);
        doc.Open();
        PdfPTable table = new PdfPTable(1);
        table.TotalWidth = 585f;
        table.LockedWidth = true;

        var logo = iTextSharp.text.Image.GetInstance(Server.MapPath("~/image/logo.jpg"));
        doc.Add(logo);

        var titleFont = FontFactory.GetFont("Arial", 18, Font.BOLD);
        doc.Add(new Paragraph("Officer's Profile. Officer's Police ID: " + lblPoliceID.Text, titleFont));

        var normalFont = FontFactory.GetFont(FontFactory.HELVETICA, 14, Font.BOLD);
        var phrase = new Phrase();
    }

这就是btnPDF第一部分的样子。后面将显示SQL命令以从SQL数据库中检索不同的数据。

SqlConnection con = new SqlConnection("Data Source = localhost; Initial Catalog = MajorProject; Integrated Security= SSPI");

    SqlCommand cm = new SqlCommand("Select pa.fullname, pp.profilepicture, pp.rank, pa.email, pa.contact, pa.address, pa.postedto, pp.achievement, pp.medal1, pp.medal2, pp.medal3, pp.medal4, pp.medal5 From PoliceAccount pa, PoliceProfile pp Where pa.policeid = '" + lblPoliceID.Text + "' And pa.policeid = pp.policeid", con);
    con.Open();
    SqlDataReader dr;

    dr = cm.ExecuteReader();

    if (dr.Read())
    {
        phrase.Add(new Chunk("Full Name :", normalFont));
        phrase.Add(dr[0].ToString());

        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);

        phrase.Add(new Chunk("Profile Picture :\u00a0", normalFont));
        Byte[] bytes1 = (Byte[])dr[1];
        iTextSharp.text.Image image1 = iTextSharp.text.Image.GetInstance(bytes1);
        image1.ScaleToFit(100f, 250f);
        Chunk imageChunk1 = new Chunk(image1, 0, 0);
        phrase.Add(imageChunk1);

        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);

        phrase.Add(new Chunk("Rank : ", normalFont));
        Byte[] bytes2 = (Byte[])dr[2];
        iTextSharp.text.Image image2 = iTextSharp.text.Image.GetInstance(bytes2);
        image2.ScaleToFit(40f, 300f);
        Chunk imageChunk2 = new Chunk(image2, 0, 0);
        phrase.Add(imageChunk2);

        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);

        phrase.Add(new Chunk("Email :", normalFont));
        phrase.Add(dr[3].ToString());

        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);

        phrase.Add(new Chunk("Contact :", normalFont));
        phrase.Add(dr[4].ToString());

        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);

        phrase.Add(new Chunk("Address :", normalFont));
        phrase.Add(dr[5].ToString());

        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);

        phrase.Add(new Chunk("Posted To :", normalFont));
        phrase.Add(dr[6].ToString());

        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);

        phrase.Add(new Chunk("Achievement :", normalFont));
        phrase.Add(dr[7].ToString());

        phrase.Add(Chunk.NEWLINE);
        phrase.Add(Chunk.NEWLINE);

        phrase.Add(new Chunk("Medal1", normalFont));
        Byte[] bytes3 = (Byte[])dr[8];
        iTextSharp.text.Image image3 = iTextSharp.text.Image.GetInstance(bytes3);
        image3.ScaleToFit(800f, 800f);
        Chunk imageChunk3 = new Chunk(image3, 0, 0);
        phrase.Add(imageChunk3);

        phrase.Add(new Chunk("Medal2", normalFont));
        Byte[] bytes5 = (Byte[])dr[9];
        iTextSharp.text.Image image5 = iTextSharp.text.Image.GetInstance(bytes5);
        image5.ScaleToFit(800f, 800f);
        Chunk imageChunk5 = new Chunk(image5, 0, 0);
        phrase.Add(imageChunk5);

        phrase.Add(new Chunk("Medal3", normalFont));
        Byte[] bytes6 = (Byte[])dr[10];
        iTextSharp.text.Image image6 = iTextSharp.text.Image.GetInstance(bytes6);
        image6.ScaleToFit(800f, 800f);
        Chunk imageChunk6 = new Chunk(image6, 0, 0);
        phrase.Add(imageChunk6);

        phrase.Add(new Chunk("Medal4", normalFont));
        Byte[] bytes7 = (Byte[])dr[11];
        iTextSharp.text.Image image7 = iTextSharp.text.Image.GetInstance(bytes7);
        image7.ScaleToFit(800f, 800f);
        Chunk imageChunk7 = new Chunk(image7, 0, 0);
        phrase.Add(imageChunk7);

        phrase.Add(new Chunk("Medal5", normalFont));
        Byte[] bytes8 = (Byte[])dr[12];
        iTextSharp.text.Image image8 = iTextSharp.text.Image.GetInstance(bytes8);
        image8.ScaleToFit(800f, 800f);
        Chunk imageChunk8 = new Chunk(image8, 0, 0);
        phrase.Add(imageChunk8);

        table.AddCell(phrase);
    }

    dr.Close();
    doc.Add(table);
    doc.Close();

    bytes = MS.ToArray();
}

为了让浏览器在尝试下载PDF文件时提示“另存为”对话框,我添加了内容替换。

Response.Clear();

Response.ContentType = "application/pdf";

String fileName = "OfficerID " + (String)Session["policeid"];

Response.AddHeader("content-disposition", "attachment;filename=" + fileName + ".pdf");

Response.BinaryWrite(bytes);

Response.End();

我已经检查过,但没有找到任何问题。但我不知道为什么当我点击btnPDF时,没有发生任何事情,并且btnPDF背后的代码没有运行。

1 个答案:

答案 0 :(得分:0)

您的代码在我的系统中正常运行。 首先检查你的所有图像path.sometime问题以加载图像。