本文介绍了我们可以从客户端默认打印到横向吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是一个在点击上打印我的ASPX页面的功能,它非常完美。

Here is a function that prints my ASPX page on a click which works absolutely perfect .

function PrintPanel() {
       debugger;
       var panel = document.getElementById("<%=Upnl1.ClientID %>");
       var printWindow = window.open(panel, '', 'height=600,width=900');
       printWindow.document.write('<html><head><title>DIV Contents</title>');

       printWindow.document.write('</head><body >');
       printWindow.document.write(panel.innerHTML);
       printWindow.document.write('</body></html>');
       printWindow.document.close();
       setTimeout(function () {
           printWindow.print();
       }, 1000);
       return false;
   }





但是我想简单的事情就是我被卡住的地方。我希望它默认在横向打印。 Always Printer选择了Potrait。但我想做这个横向而不是用户选择它,我更喜欢它默认为横向这个功能单独使用。



有人可以帮帮我吗?



But I want to simple thing which is where I am stuck. I want it to print in Landscape by default. Always Printer picks the Potrait. But I want to do this Landscape instead of user picking it , I prefer it to default to Landscape for this function alone.

Can someone help me with this please?

推荐答案



这篇关于我们可以从客户端默认打印到横向吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 09:14