在项目开发中,经常会用到页面打印的功能,在ASP.NET环境下推荐一款web打印控件smsx.cab。
使用方法:一般会先定义一个用于打印的母版页(Print.Master),在母版页上做好布局,包括页面布局、js 的引用、smsx.cab控件加载、打印和预览按钮的放置。
下载链接:http://download.csdn.net/detail/nxgliming/6668999
母版页(Print.Master):
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Print.master.cs" Inherits="PdSecrity.Pages.Print.Print" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>打印</title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<style media="print">
.Noprint
{
display: none;
}
.w3cbbs
{
page-break-after: always;
}
</style>
</head>
<script src="<%= Page.ResolveClientUrl("~/PdSecrity/Scripts/jquery-1.10.2.min.js")%>"
type="text/javascript"></script>
<script src="<%= Page.ResolveClientUrl("~/PdSecrity/Scripts/Print.js")%>" type="text/javascript"></script>
<body>
<form id="form1" runat="server">
<!--下面的这个objec标签就是加载t加载smsx.cab控件用-->
<object id="factory" style="display: none" codebase="<%= Page.ResolveClientUrl("~/PdSecrity/Scripts/smsx.cab")%>#VVersion=6,6,440,26"
classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814" viewastext>
</object>
<script>
$(document).ready(function () {
//加载打印设置
SetPrintSettings();
});
</script>
<table align="center">
<tr class="Noprint">
<td>
<input id="Button1" type="button" value="打印" class="btnbg" onclick="Print();" />
<input id="Button2" type="button" value="预览" class="btnbg" onclick="Preview();" />
</td>
</tr>
<tr>
<td>
<asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</td>
</tr>
</table>
</form>
</body>
</html>
Print.js,主页用于打印的一些设置
//预览
function Preview() {
document.all.factory.printing.Preview();
} function Print() {
document.all.factory.printing.Print(false); //无确认打印,true时打印前需进行确认
} function PrintSetup() {
document.all.factory.printing.PageSetup();
} function SetPrintSettings() {
// -------------------基本功能,可免费使用-----------------------
document.all.factory.printing.header = ""; //页眉
document.all.factory.printing.footer = ""; //页脚
////document.all.factory.printing.SetMarginMeasure(1); //页边距单位,1为毫米,2为英寸//边距设置,需要注意大部分打印机都不能进行零边距打印,即有一个边距的最小值,一般都是6毫米以上
//设置边距的时候时候如果设置为零,就会自动调整为它的最小边距
document.all.factory.printing.leftMargin = ; //左边距
document.all.factory.printing.topMargin = ; //上边距
document.all.factory.printing.rightMargin = ; //右边距
document.all.factory.printing.bottomMargin = ; //下边距
document.all.factory.printing.portrait = true; //是否纵向打印,横向打印为false
//--------------------高级功能---------------------------------------------
//document.all.factory.printing.printer = "EPSON LQ-1600KIII"; //指定使用的打印机
//document.all.factory.printing.printer = "\\\\cosa-data\\HPLaserJ";//如为网络打印机,则需要进行字符转义
////document.all.factory.printing.paperSize = "A4"; //指定使用的纸张
document.all.factory.printing.paperSource = "Manual feed"; //进纸方式,这里是手动进纸
////document.all.factory.printing.copies = 1; //打印份数
////document.all.factory.printing.printBackground = false; //是否打印背景图片
////document.all.factory.printing.SetPageRange(false, 1, 3); //打印1至3页
//---------------------常用函数--------------------------------
//document.all.factory.printing.Print(false); //无确认打印,true时打印前需进行确认
//document.all.factory.printing.PrintSetup(); //打印设置
//document.all.factory.printing.Preview(); //打印预览
//document.all.factory.printing.WaitForSpoolingComplete(); //等待上一个打印任务完全送入打印池,在连续无确认打印时非常有用
//document.all.factory.printing.EnumPrinters(index); //枚举已安装的所有打印机,主要用于生成打印机选择功能
}
最后,让所需要打印的页面都引用这个母版页即可。