我有一个包含字段firstname,lastname和location的gridview。我有一个打印按钮,在单击打印按钮时,我想在已打印的A4纸上打印每个记录的名字,姓氏和位置。
例如,如果我有10条记录,我需要在10张A4纸上打印详细信息。任何建议都非常感谢。
我将数据库中的值填充到datatable,并将其填充到网格视图中。
我有以下代码,但它打印整个gridview
function doPrint()
{
var prtContent = document.getElementById('<%= GridView1.ClientID %>');
prtContent.border = 0; //set no border here
var WinPrint = window.open('','','left=100,top=100,width=1000,height=1000,toolbar=0,scrollbars=1,status=0,resizable=1');
WinPrint.document.write(prtContent.outerHTML);
WinPrint.document.close();
WinPrint.focus();
WinPrint.print();
WinPrint.close();
}