gpt4 book ai didi

asp.net - ItextSharp 错误 : Document has no pages

转载 作者:行者123 更新时间:2023-12-05 01:31:35 26 4
gpt4 key购买 nike

我正在使用 itextsharp 将我的 asp.net 页面转换为 pdf。单击按钮时,我正在编写以下代码:

        Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=GridViewExport.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
//GridView1.AllowPaging = false;
GridView1.DataBind();
GridView1.RenderControl(hw);
StringReader sr = new StringReader(sw.ToString());
Document pdfDoc = new Document(PageSize.A4, 10f, 10f, 10f, 0f);
HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
pdfDoc.Open();
htmlparser.Parse(sr);
pdfDoc.Close();
Response.Write(pdfDoc);
Response.End();

但我收到错误消息:“文档没有页面”
请帮我摆脱这个错误并生成pdf。

最佳答案

为此需要采取两个步骤:

1) 检查 ITextSharp dll 是最新版本



2)使用链接按钮而不是按钮,不要使用超链接,因为它会导致超链接按钮出错。

关于asp.net - ItextSharp 错误 : Document has no pages,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12154684/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com