0

我在下面有这段代码,并试图用数据库中的值填充我的 pdf。

 PdfPCell points = new PdfPCell(new Phrase("and is therefore entitled to ", arialCertify));
points.Colspan = 2;
points.Border = 0;
points.PaddingTop = 40f;
points.HorizontalAlignment = 1;//0=Left, 1=Centre, 2=Right
// code below needs attention
var cID = "ALFKI";
var xw = Customers.First(p => p.CustomerID ==cID);
table.AddCell(xw.CompanyName.ToString());

我无法弄清楚我哪里出错了。当我删除“下面需要注意的代码”下的代码时,它可以工作,但我需要数据库值。

我正在使用带有 ItextSharp 的 webmatrix。如果要回答您需要更多代码,请告诉我。

4

1 回答 1

0
PdfPCell cell=new PdfPCell(new Phrase(xw.CompanyName.ToString()));
cell.setColspan(numColumns);
table.addCell(cell);
document.add(table);
于 2013-05-18T13:11:24.717 回答