介绍一种Web上打印技术

一、    介绍ScriptX控件
对于B/S架构的项目中,Web打印最是让程序员头痛的技术,在这次项目中运用了第三方控件ScriptX解决了此技术包括各种汇总表,详细清单等等,但最大弊端就是打印的格式是死的,你要打印出怎样的格式必须自己来做,还有就是打印分页,它是按你设置的纸张大小来分的,所以必须人为控制,ScriptX控件所需文件ScriptX.cab。(ScriptX下载地址http://www.meadroid.com/scriptx/freedep.asp )
打印功能使用:
⑴ 用户在客户端单击“打印”按钮,第一次使用打印会弹出如下对话框
⑵ 单击“是”按钮,此时会把控件ScriptX下载到本机
⑶ 在打印窗口中有大标题、打印条件、打印列表,单击“打印”按钮进入打印浏览界面。
⑷ 单击“Print”按钮,听打印机声音响起。
二、    一个简单的ScriptX控件使用实例
1.界面文件  WebExample.aspx  (其中kg.css是界面样式在这里就不介绍了)
<%@ Page language="c#" Codebehind="WebExample.aspx.cs" AutoEventWireup="false" Inherits="WebPrint.WebExample" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>一个简单的ScriptX打印</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<LINK href="kg.css" type="text/css" rel="stylesheet">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="WebExample" method="post" runat="server">
<TABLE width="100%" height="100%">
<tr>
<td height="100">
</td>
</tr>
<tr>
<td style="HEIGHT: 14px" align="center">
<div id="divTableResult" name="divTableResult">
<asp:Label id="Label1" runat="server" Width="232px" Height="32px" Font-Size="Large">欢迎使用ScriptX打印</asp:Label>
</div>
</td>
</tr>
<tr>
<td align="center" valign="top">
<div id="divChartResult" name="divChartResult">
<asp:Image id="Image1" runat="server" ImageUrl="win2000.gif"></asp:Image>
</div>
</td>
</tr>
<tr>
<td align="center" valign="top">
<input id="btnPrint" style="WIDTH: 32px; HEIGHT: 19px" οnclick="printResult();" type="button"
size="1" value="打印" name="btnPrint">
</td>
</tr>
</TABLE>
</form>
<script language="javascript">
function printResult()
{
//针对不同模块,设置打印参数
var title = 'ScriptX打印';//报表名称
var orien = 'true';//打印页面方向,true:纵向打印/false横向打印
//参数设置结束
var strURL;
title = escape(title);
//condition = escape(condition);
strURL = 'printContainer2.aspx?title='+title+'&orien='+orien;
window.open(strURL,'printResult','height=600, width=800, top=0, left=50,toolbar=no , menubar=no, scrollbars=yes, resizable=no, location=no, status=no');
}
</script>
</body>
</HTML>
说明:
⑴ <div id="divTableResult" name="divTableResult">和<div id="divChartResult" name="divChartResult"> 是在printContainer2.aspx文件中定义的传值标签,因此必须要有。
⑵ printResult()方法用来声明传值内容,具体在方法中已说明
2.打印界面   printContainer2.aspx (其中print.css是打印样式就不介绍了)
<%@ Page language="c#" Codebehind="printContainer2.aspx.cs" AutoEventWireup="false" Inherits="WebPrint.printContainer2" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<%
string title = "查询打印";
‘用于title获取标题
if(Request.QueryString["title"].ToString().Trim()!=""){
title = Request.QueryString["title"].ToString().Trim();
}
‘用于orientation获取打印页面方向,true:纵向打印/false横向打印
string orientation = "true";
if(Request.QueryString["orien"].ToString().Trim()!=""){
orientation =  Request.QueryString["orien"].ToString().Trim();
}
%>
<html>
<head>
<title>ScriptX 打印</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<link href="kg.css" rel="stylesheet" type="text/css">
<link href="print.css" rel="stylesheet" type="text/css"  media="print" >
<script  FOR=document event="onclick">
if(event.srcElement.tagName=='A'){
//alert('a click!');
event.cancelBubble = true;
}
</script>
<style type="text/css">
a:link {text-decoration:none}
a:visited {text-decoration:none}
a:active {text-decoration:none}
a:hover {text-decoration:none}
A { COLOR: #000000;TEXT-DECORATION: none; FONT-SIZE: 8pt;FONT-FAMILY: "";}
</style>
</head>
<body MS_POSITIONING="GridLayout" >
<!--这里调用控件ScriptX.cab-->
<object id="factory" viewastext  style="display:none"
classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814"
codebase="ScriptX.cab#Version=6,1,431,2">
</object>
<SCRIPT defer>
//用于设置打印参数
function printBase() {
factory.printing.footer = "&b ScriptX 打印 &b"       //页眉
factory.printing.footer = ""                                 //页脚
factory.printing.portrait = <%=orientation%>             //true为纵向打印,flase为横向打印
factory.printing.leftMargin = 1.5                               //左页边距
factory.printing.topMargin = 0.5                               //上页边距
factory.printing.rightMargin = 0.5                             //右页边距
factory.printing.bottomMargin = 1.0                          //下页边距
}
</SCRIPT>
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" bordercolor="#FFFFFF">
<tr bordercolor="#FFFFFF">
<td >
<table width="70%" border="0" cellspacing="0" cellpadding="2" align="center">
<tr>
<td align="center"><font size="5" face="宋体"><b><div  name="divTitle" id="divTitle"></div></b></font></td>
</tr>
<tr>
<td align="center">
<div id="divReport" name="divReport">
<input type="button" name="cmdPRINT" id="cmdPRINT" οnclick="printReport()" value="打印">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="button" οnclick="window.close();"  value="关闭">
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center">
<tr><td align="center">
<!--  用于显示divTableContainer标签的值 -->
<div id="divTableContainer"  name="divTableContainer"></div>
</td></tr>
<tr><td align="center">
<!--  用于显示divChartContainer标签的值 -->
<div id="divChartContainer"  name="divChartContainer"></div>
</td></tr>
</table>
</body>
<script language="javascript">
//使界面最大化
maxWin();
var needcon='';
document.all.divTitle.innerText = unescape('<%=title%>');
//用于把父窗体的divTableResult和divChartResult标签的值分别转入divTableContainer 和divChartContainer标签中
var tableContent = window.opener.document.all.divTableResult.innerHTML;
tableContent = replaceAll(tableContent,"<A ","<span ");
tableContent = replaceAll(tableContent,"</A> ","</span> ");
tableContent = replaceAll(tableContent,"<a ","<span ");
tableContent = replaceAll(tableContent,"</a> ","</span> ");
tableContent = replaceAll(tableContent,"<input ","<font ");
tableContent = replaceAll(tableContent,"<INPUT ","<font ");
document.all.divTableContainer.innerHTML = tableContent;
document.all.divChartContainer.innerHTML = window.opener.document.all.divChartResult.innerHTML;
//用于调用设置打印参数的方法和显示预览界面
function printReport(){
printBase();
//window.print();
factory.printing.Preview();
}
function replaceAll( str, from, to ) {
var idx = str.indexOf( from );
while ( idx > -1 ) {
str = str.replace( from, to );
idx = str.indexOf( from );
}
return str;
}
function maxWin()
{
var aw = screen.availWidth;
var ah = screen.availHeight;
window.moveTo(0, 0);
window.resizeTo(aw, ah);
}
</script>
</html>
三、    参考文件
源代码

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/408304.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

关于如何参与到开源项目中《How To Succeed In Open Source ( In Ways You Haven't Considered Yet )》...

转自&#xff1a;http://gaslight.co/blog/how-to-succeed-in-open-source-in-ways-you-havent-considered-yet It’s Easy to Feel Entitled in the Open Source World A while back, it was easy to think of open source projects as real products. I think that I thought…

[论文笔记]弱监督条件下基于相似性条件学习的服饰搭配生成

论文&#xff1a;《Learning Similarity Conditions Without Explicit Supervision》 论文地址&#xff1a;https://arxiv.org/pdf/1908.08589.pdf 代码地址&#xff1a;https://github.com/rxtan2/Learning-Similarity-Conditions 本文首发于 https://mp.weixin.qq.com/s/WH…

分类法过时了吗?【ZZ】

分类法过时了吗&#xff1f;引用网址: http://www.qiji.cn/baike/contents/122.html 更新日期: 2005年6月09 周四 Posted By ianwest 更多 标签: YAHOO Sina Google 页面工具: [前一项] [后一项] { 发表评论 } 计算机和互联网的出现意味着新阅读时代的来临&#xff0c;如何组织…

Linux抓包工具tcpdump命令详解

1、简介 用简单的话来定义tcpdump&#xff0c;就是&#xff1a;dump the traffic on a network&#xff0c;根据使用者的定义对网络上的数据包进行截获的包分析工具。 tcpdump可以将网络中传送的数据包的“头”完全截获下来提供分析。它支持针对网络层、协议、主机、网络或…

神经网络不收敛的 11 个原因及其解决办法

原文&#xff1a;http://theorangeduck.com/page/neural-network-not-working 原文标题&#xff1a;My Neural Network isn’t working! What should I do? 译文作者&#xff1a;kbsc13 联系方式&#xff1a; Github&#xff1a;https://github.com/ccc013 知乎专栏&…

【转贴】想应聘的瞧仔细了:HW分析大全

首先浇盆冷水&#xff1a;2000年之后进HW的人&#xff0c;彻底抛弃发财的想法。没有股票和期权&#xff0c;在HW呆和在国企呆一个样&#xff0c;就是干工资和年中一点奖金。真正发财的人是98年及以前进来的&#xff08;工号在15000以内&#xff09;&#xff0c;每年股票分红在十…

7 个有用的 PyTorch 技巧

原文&#xff1a;https://www.reddit.com/r/MachineLearning/comments/n9fti7/d_a_few_helpful_pytorch_tips_examples_included/ 原文标题&#xff1a;a_few_helpful_pytorch_tips_examples_included 译文作者&#xff1a;kbsc13 联系方式&#xff1a; Github&#xff1a;…

18 个经典故事

1 曾经有个小国到中国来&#xff0c;进贡了三个一模一样的金人&#xff0c;金壁辉煌&#xff0c;把皇帝高兴坏了。可是这小国不厚道&#xff0c;同时出一道题目&#xff1a;这三个金人哪个最有价值&#xff1f;   皇帝想了许多的办法&#xff0c;请来珠宝匠检查&#xff…

HTML5 CSS3的新交互特性

什么是HTML5和CSS3 HTML和CSS并不难理解。HTML为构成网页的主要语言。通过这种语言&#xff0c;我们可以向计算机说明网页格式、内容、显示效果等等。而CSS则是专 门用来控制网页显示效果的语言。这时候问题出来了&#xff0c;为什么我们要单独使用CSS呢&#xff0c;HTML不是一…

基于Colab Pro Google Drive的Kaggle实战

原文&#xff1a;https://hippocampus-garden.com/kaggle_colab/ 原文标题&#xff1a;How to Kaggle with Colab Pro & Google Drive 译文作者&#xff1a;kbsc13 联系方式&#xff1a; Github&#xff1a;https://github.com/ccc013/AI_algorithm_notes 微信公众号&…

Focal Loss 论文笔记

论文&#xff1a;《Focal Loss for Dense Object Detection》 论文地址&#xff1a;https://arxiv.org/abs/1708.02002 代码地址&#xff1a; 官方 github&#xff1a;https://github.com/facebookresearch/detectrontensorflow&#xff1a;https://github.com/tensorflow/m…

SAP的软件设置

上次装的SAP有问题&#xff0c;懒得管那么多&#xff0c;重装系统得了。我的水平还不够看log里的错误代码的内容然后手动修改安装文件。Win2000AS装好&#xff0c;打上SP4补丁包。SAP的官方说法是&#xff0c;至少要升级到SP3包&#xff0c;但是有网友说不打补丁包也能装。当然…

php 构造骚扰短信发送机(仅供学习与参考,请勿用于非法用途)

最近在某宝买东西得罪了某黑心商家。。然后他就疯狂的给我发骚扰短信&#xff0c;烦死了。。。 短信大概就是利用一些网站的手机验证码来实现的。。 所以再被他疯狂骚扰后决定自己动手反击。。 php主要用到了curl的函数库扩展&#xff0c;然后主要要做的还是去抓包分析网站注册…