如何使用 iTextSharp 将 gridview 导出为 pdf 时获取 gridview 单元格的值
目前我尝试将 gridview (每行包含一个图像)导出到 PDF 文件。 我发现 PdfPTable table = new PdfPTable(TotalColumns) 可以帮助我修改图像并将其插入到列中。就像“table.AddCell(image);”
但是我如何将 gridview (每行)的每个单元格的值插入其中? (不使用 findcontrol)
非常感谢。
Currently I try to export an gridview (include an image each row) to PDF file.
I find out that PdfPTable table = new PdfPTable(TotalColumns) can help me modify and insert the image to the column. like "table.AddCell(image);"
but how do i insert the gridview (each row)'s each cell's value in to that? (without using findcontrol)
thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是asp.net webforms,对吧?以下是使用 iTextSharp 将 gridview 转换为 pdf 的示例: [^ ]
it's asp.net webforms, right? here is the sample about converting a gridview to pdf using iTextSharp: [^]