4

我已经使用 iTextSharp 从 gridview 导出到 PDF。由于 gridview 列更多,因此 PDF 中的列未对齐并且非常小。我尝试在代码隐藏和 .aspx 页面中编写样式。但大小没有变化。

.aspx 页面

 <asp:GridView ID="grdResult" runat="server" AutoGenerateColumns="true" Width="100%"
      CellPadding="3" CellSpacing="3" Font-Size="10pt">
      <HeaderStyle Font-Bold="true" Width="250px" />
 </asp:GridView>

.cs 页面

Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment;filename=MARGEmployees.pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
HtmlForm frm = new HtmlForm();
grdResult.Parent.Controls.Add(frm);
frm.Attributes["runat"] = "server";
frm.Controls.Add(grdResult);
frm.RenderControl(hw);
grdResult.HeaderRow.Style.Add("width", "15%");
grdResult.HeaderRow.Style.Add("font-size", "10px");
grdResult.Style.Add("font-family", "Tahoma");
grdResult.Style.Add("font-size", "8px");
StringReader sr = new StringReader(sw.ToString());
Document pdfDoc = new Document(PageSize.A4, 7f, 7f, 7f, 0f);
HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
pdfDoc.Open();
htmlparser.Parse(sr);
pdfDoc.Close();
Response.Write(pdfDoc);
Response.End();

请帮助我

4

2 回答 2

1

尝试在后面的代码中更改您的 pdf 文档大小。

//尝试其中任何一种

Document pdfDoc = new Document(PageSize.A3, 7f, 7f, 7f, 0f);
Document pdfDoc = new Document(PageSize.A2, 7f, 7f, 7f, 0f);
Document pdfDoc = new Document(PageSize.A1, 7f, 7f, 7f, 0f);

由于设置了 pdf 文档的大小,因此列被压缩。如果您更改大小,它将起作用。

于 2012-12-13T05:27:08.103 回答
0

GridView 能够将网格导出为 PDF,同时将 GridView 呈现为 XHTML 表格,然后在此过程中将表格转换为 PDF 文档

于 2013-11-13T09:27:12.527 回答