当前位置:编程学习 > C#/ASP.NET >>

实现打印

在win7系统下,c#,如何实现打印。。需要详细些 --------------------编程问答--------------------
 <input id="btnPrint" type="button" value="预览打印" onclick="doPrint();" class="button" style="height:26px"/>

    function doPrint()  
    {  
        bdhtml=window.document.body.innerHTML;  
        sprnstr="<!--startprint-->";  
        eprnstr="<!--endprint-->";  
        prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17);  
  
        prnhtmlprnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));  
  
        window.document.body.innerHTML=prnhtml;  
        window.print();
    }   
--------------------编程问答-------------------- window.print --------------------编程问答--------------------
引用 1 楼 subxli 的回复:
C# code
 <input id="btnPrint" type="button" value="预览打印" onclick="doPrint();" class="button" style="height:26px"/>

    function doPrint()  
    {  
        bdhtml=window.document.body.innerHTML;……


Up````````
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,