将aspx面板导出为pdf

时间:2013-11-18 20:46:18

标签: c# asp.net pdf

我正在尝试将aspx网页面板中的内容导出为pdf。 aspx面板包含表格,文本,图表,最重要的是动态谷歌地图。任何人都可以告诉我如何做到这一点?

我试过这个,首先将整个网页转换为位图图像,然后使用iTextSharp将位图转换为pdf。这种方法在某种程度上起作用。但是,我不希望pdf中的aspx页面中的所有内容,只是特定aspx面板中的内容。

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

Panel控件的内容渲染为HtmlTextWriter,然后照常写入PDF,如下所示:

protected void YourButton_Click(object sender, EventArgs e)
{
    Response.ContentType = "application/pdf";
    Response.AddHeader("content-disposition", "attachment;filename=YourPane.pdf");
    Response.Cache.SetCacheability(HttpCacheability.NoCache);

    StringWriter sw = new StringWriter();
    HtmlTextWriter hw = new HtmlTextWriter(sw);

    // Call your panel by ID to render the contents to HTML
    YourPanel.RenderControl(hw);

    StringReader sr = new StringReader(sw.ToString());

    Document pdfDoc = new Document(PageSize.A4, 10f, 10f, 100f, 0f);

    HTMLWorker htmlparser = new HTMLWorker(pdfDoc);

    PdfWriter.GetInstance(pdfDoc, Response.OutputStream);

    pdfDoc.Open();

    htmlparser.Parse(sr);

    pdfDoc.Close();

    Response.Write(pdfDoc);
    Response.End();
}