通过asp.net和c#将数据库数据链接到PDF(打印收据)

时间:2017-01-31 06:20:08

标签: c# asp.net pdf

我可以问一下如何将数据库数据链接到PDF吗?就像我在我的数据库中有自己的订单号,我想将orderNo链接到我的数据库中的订单号。同样适用于产品和价格。谢谢。

string companyName = "Testing1";
int orderNo = 1234;
DataTable dt = new DataTable();
dt.Columns.AddRange(new DataColumn[5]
{
   new DataColumn("ProductId", typeof(string)),
   new DataColumn("Product", typeof(string)),
   new DataColumn("Price", typeof(int)),
   new DataColumn("Quantity", typeof(int)),
   new DataColumn("Total", typeof(int))
 });

0 个答案:

没有答案