<OBJECT id=WebBrowser classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 width=0></OBJECT>
<input type=button value=打印     onclick=document.all.WebBrowser.ExecWB(6,1)>
<input type=button value=直接打印 onclick=document.all.WebBrowser.ExecWB(6,6)>
<input type=button value=页面设置 onclick=document.all.WebBrowser.ExecWB(8,1)>
<input type=button value=打印预览 onclick=document.all.WebBrowser.ExecWB(7,1)>

解决方案 »

  1.   

    數據還是文本?數據建議用Crystal report,功能強
      

  2.   

    打印指定页面<frameset rows="*,*">
      <frame name="frmTitle" src="1.htm">
      <frame name="frmContent" src="2.htm">
    </frameset>在2.htm要打印1.htm
    <script>
    top.frmTitle.focus();
    top.frmTitle.print()
    </script>预览指定页面继续关注
      

  3.   

    <script language="javascript">
    function printsetup(){
    // 打印页面设置
    wb.execwb(8,1);
    }
    function printpreview(){
    // 打印页面预览
            
    wb.execwb(7,1);
              
            
    } function printit()
    {
    if (confirm('确定打印吗?')) {
    wb.execwb(6,6)
    }
    }
    </script>