程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> java jsp頁面啟動IE浏覽器打印功能

java jsp頁面啟動IE浏覽器打印功能

編輯:關於JSP

需要注意的是:(internet安全選項中自定義級別那裡需要啟用沒有標記為安全的ActiveX控件)那裡需要啟用沒有標記為安全的ActiveX控件)
樣式:
<style media=print>
    .Noprint{display:none;}
    .PageNext{page-break-after: always;}
</style>

jsp頁面:
<center class="Noprint" >
    <p>
        <OBJECT  id="WebBrowser"  classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2  height=0  width=0>
        </OBJECT>
        <br/><br/><br/>
        <input  type=button  value=打印預覽  onclick=document.getElementById("WebBrowser").ExecWB(7,1)>&nbsp;&nbsp;


        <input  type=button  value=打印     onclick=document.getElementById("WebBrowser").ExecWB(6,1)>&nbsp;&nbsp;


        <input  type=button  value=直接打印  onclick=document.getElementById("WebBrowser").ExecWB(6,6)>&nbsp;&nbsp;


        <input  type=button  value=頁面設置  onclick=document.getElementById("WebBrowser").ExecWB(8,1)>&nbsp;&nbsp;


        <font color="red" >(請使用IE浏覽器打印操作)</font>
input   name=Button   onClick=document.all.WebBrowser.ExecWB(1,1)   type=button   value=打開>
 
<input   name=Button   onClick=document.all.WebBrowser.ExecWB(2,1)   type=button   value=關閉所有>

<input   name=Button   onClick=document.all.WebBrowser.ExecWB(4,1)   type=button   value=另存為>
<input
   name=Button   onClick=document.all.WebBrowser.ExecWB(10,1)   type=button   value=屬性>

<input   name=Button   onClick=document.all.WebBrowser.ExecWB(17,1)   type=button   value=全選>

<input   name=Button   onClick=document.all.WebBrowser.ExecWB(22,1)   type=button   value=刷新>

<input   name=Button   onClick=document.all.WebBrowser.ExecWB(45,1)   type=button   value=關閉>
    </p>
    <hr align="center" width="90%" size="1" noshade>
</center>


作者:feixiangdexin123087

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved