如何使用javascript在asp.net中打印文本框值

时间:2015-04-14 11:38:19

标签: asp.net

我正面临在打印相应部分时检索文本框的值。

    function PrintPanel() {

     var panel = document.getElementById("<%=pnlContents.ClientID %>");
     var printWindow = window.open('', '', 'height=400,width=800');


     printWindow.document.write('<html><head><title>DIV Contents</title>');

     printWindow.document.write('</head><body >');
     printWindow.document.write(panel.innerHTML);
     var text = document.getElementById('<%=Textbook.ClientID%>').value;
     printWindow.document.write('</body></html>');

        printWindow.document.close();
        setTimeout(function () {

            printWindow.print();
        }, 500);
        return false;
      }     

0 个答案:

没有答案