您的位置:首页 > 其它

ScriptX实现的打印功能 只兼容IE

2014-04-23 11:42 387 查看
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="OrderPrint_From.aspx.cs" Inherits="MouldERP.ChiHZhong.OrderPrint_From" %>

<!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 id="Head1" runat="server">
<title>订单打印</title>
<%--<object id="factory" style="display: none" classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814"
codebase="../js/smsx.cab" viewastext>
../js/smsx.cab:是导入的打印包,此处codebase地址要对应上
</object>--%>

<object id="factory" style="display:none"
classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814"
codebase="smsx.cab" viewastext></object>

<script type="text/javascript">
function PrintTable() {
$("#div_print").hide();
doprint();
}

function doprint() {

factory.printing.header = "";
factory.printing.footer = "";
factory.printing.portrait = false; //portrait是指打印方向,设置为true就是纵向,false就是横向。
factory.printing.leftMargin   = 5
factory.printing.topMargin   =   2
factory.printing.rightMargin   =   5
factory.printing.bottomMargin   =   2

factory.DoPrint(false); //设置为false,直接打印
}

</script>

</head>
<body>
<form id="form1" runat="server">

<div id="div_print" style="margin-top:20px; text-align:center; display:block;">
<input onclick="PrintTable();" id="PrintHide" type="submit" class="btnSubmitChiH" value="打   印" />

</div>
</form>
</body>
</html>


  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: