JavaWeb 인쇄 기능

3297 단어 JavaWeb인쇄
쓸데없는 말은 그만하고 바로 코드를 붙여 드리겠습니다. 구체적인 코드는 다음과 같습니다.

<script language="javascript"> 
  function printsetup(){ 
  //   
  wb.execwb(8,1); 
  } 
  </script> 
  </head> 
  <body> 
  <OBJECT classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"  height=0 id=wb name=wb width=0></OBJECT> 
  <input type=button class="button" name=button_setup value=" " onclick="javascript:printsetup();"> 
정리된 인쇄 정보
1. 세로타, 가로, 페이지 여백을 제어합니다.
(1)

function SetPrintSettings() {
 // -- advanced features
 factory.printing.SetMarginMeasure(2) // measure margins in inches
 factory.SetPageRange(false, 1, 3) // need pages from 1 to 3
 factory.printing.printer = "HP DeskJet 870C"
 factory.printing.copies = 2
 factory.printing.collate = true
 factory.printing.paperSize = "A4"
 factory.printing.paperSource = "Manual feed"
 // -- basic features
 factory.printing.header = "This is MeadCo"
 factory.printing.footer = "Advanced Printing by ScriptX"
 factory.printing.portrait = false
 factory.printing.leftMargin = 1.0
 factory.printing.topMargin = 1.0
 factory.printing.rightMargin = 1.0
 factory.printing.bottomMargin = 1.0
}
</script>
(2)

<script language="javascript">
  function printsetup(){
  // 打印页面设置
  wb.execwb(8,1);
  }
  function printpreview(){
  // 打印页面预览
    
  wb.execwb(7,1);
     
    
  }
  function printit()
  {
  if (confirm('确定打印吗?')) {
  wb.execwb(6,6)
  }
  }
  </script>
</head>
<body>
<OBJECT classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"
height=0 id=wb name=wb width=0></OBJECT>
<input type=button name=button_print value="打印"
onclick="javascript:printit()">
<input type=button name=button_setup value="打印页面设置"
onclick="javascript:printsetup();">
<input type=button name=button_show value="打印预览"
onclick="javascript:printpreview();">
<input type=button name=button_fh value="关闭"
onclick="javascript:window.close();">
이 구성 요소에 대한 다른 사용법은 다음과 같다.
WebBrowser.ExecWB(1,1) 열기
Web.ExecWB(2,1) 현재 모든 IE 창을 닫고 새 창을 엽니다.
Web.ExecWB(4,1) 웹 페이지 저장
Web.ExecWB(6,1) 인쇄
Web.ExecWB(7,1) 인쇄 미리 보기
Web.ExecWB(8,1) 인쇄 페이지 설정
Web.ExecWB(10,1) 페이지 속성 보기
Web.ExecWB(15,1)가 취소된 것 같습니다. 확인 필요
Web.ExecWB(17,1) 전체 선택
Web.ExecWB(22,1) 새로 고침
Web.ExecWB(45,1) 창 닫기 알림 없음
2, 페이지 인쇄

<HTML>
<HEAD>
<STYLE>  
  P {page-break-after: always}
</STYLE>
</HEAD>
<BODY>
<%while not rs.eof%>
<p><%=rs(0)%></P>
<%rs.movenext%>
<%wend%>
</BODY>
</HTML>
위에서 설명한 내용은 여러분에게 소개된 JavaWeb의 인쇄 기능 실현에 관한 내용입니다. 여러분에게 도움이 되기를 바랍니다!

좋은 웹페이지 즐겨찾기