asp.net如何实现 打印gridview中的数据,打印之前要预览设置打印页面 qq:569798469,谢谢!
1个回答
展开全部
<html>
<title>打印销售报价单</title>
<script>
function pagesetup_null(){
var hkey_root,hkey_path,hkey_key;
hkey_root="HKEY_CURRENT_USER";
hkey_path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
try{
var RegWsh = new ActiveXObject("WScript.Shell");
hkey_key="header";
RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"");
hkey_key="footer";
RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"");
//&b 第&p页/共&P页 &b
}catch(e){}
}
function printpreview() {
pagesetup_null();
//return false;
try {
wb.execwb(7, 1);
} catch (e) {
alert("您的浏览器不支持此功能,请选择'文件'->'打印预览'");
}
}
</script>
</head>
<body>
<OBJECT classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" id="wb" width="0" height="0"></OBJECT>
<form id="form1" runat="server">
<table width="100%" border="0" class="Noprint" cellpadding="0" cellspacing="2" align="center">
<tr>
<td height="21" align="center"><img src="../images/print.jpg" align="absmiddle" style="cursor:hand;" onClick="printpreview();">打印</td>
</tr>
</table>
<!--startprint-->
这里放要打印的数据 gridview中的内容
<!--endprint-->
</form>
</body>
</html>
<title>打印销售报价单</title>
<script>
function pagesetup_null(){
var hkey_root,hkey_path,hkey_key;
hkey_root="HKEY_CURRENT_USER";
hkey_path="\\Software\\Microsoft\\Internet Explorer\\PageSetup\\";
try{
var RegWsh = new ActiveXObject("WScript.Shell");
hkey_key="header";
RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"");
hkey_key="footer";
RegWsh.RegWrite(hkey_root+hkey_path+hkey_key,"");
//&b 第&p页/共&P页 &b
}catch(e){}
}
function printpreview() {
pagesetup_null();
//return false;
try {
wb.execwb(7, 1);
} catch (e) {
alert("您的浏览器不支持此功能,请选择'文件'->'打印预览'");
}
}
</script>
</head>
<body>
<OBJECT classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" id="wb" width="0" height="0"></OBJECT>
<form id="form1" runat="server">
<table width="100%" border="0" class="Noprint" cellpadding="0" cellspacing="2" align="center">
<tr>
<td height="21" align="center"><img src="../images/print.jpg" align="absmiddle" style="cursor:hand;" onClick="printpreview();">打印</td>
</tr>
</table>
<!--startprint-->
这里放要打印的数据 gridview中的内容
<!--endprint-->
</form>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询