0

我正在尝试在我的网页中使用itextsharp将包含标签和 GridView 等数据的面板打印到 PDF 。但如果我无法将样式应用于 GridView。

你能帮助我吗??

我同时使用 css 和 html 样式来设置 GridView 的样式。

Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "inline;filename=" + filename + ".pdf");
Response.Cache.SetCacheability(HttpCacheability.NoCache);
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
pnl_print.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();

sr.Close();
hw.Close();
sw.Close();

如何在 Panel 中向 Gridview 添加样式?

面板 ID 为 pnl_print

GridView ID 为 gv1

你能帮我吗 ??

4

1 回答 1

0

我不确定是否可以使用 itextsharp 向 pdf 添加外部 css,但是您始终可以使用类似的东西创建一个带有 itextsharp 提供的函数的 css,重写 itextsharp css 类中的样式。

StyleSheet styles = new StyleSheet();
styles.LoadTagStyle("p", "size", "10pt");
styles.LoadTagStyle("p", "color", "#0000ff");     
于 2012-08-23T05:47:41.177 回答