我在下面有下面的代碼,並試圖使用數據庫中的值填充我的pdf。使用數據庫值填充iTextSharp 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());
我找不出我要去哪裏錯了。當我刪除'需要注意的代碼'下的代碼時,它可以工作,但我需要數據庫值。
我正在使用webmatrix和ItextSharp。如果要回答你需要進一步的代碼,請讓我知道。
* *出錯了?任何錯誤消息? – mkl
沒有錯誤消息。 Webmatrix doent在這一個上顯示錯誤。欣賞你的問題。 –
你創建一個PdfPCell點,你不用它在任何地方。我們不知道客戶類或對象是關於什麼的。我們不知道您要向公司名稱添加單元格的表格。你的問題被嚴重破壞,因此我投了票結束。 –