asp.net opera print对话框

时间:2012-10-31 21:26:14

标签: c# javascript asp.net

在javascript中,以下代码未显示实际的打印对话框。新窗口打开,但没有打印对话框。 IE / Chrome / Mozilla都很好。 我已经阅读了歌剧所有常见的超时问题,并尝试过我相信解决方案的所有可能性。

任何人都知道解决方案是什么?

var windowUrl = 'about:blank';
var UserLoggedIn = $("#lblUser").text()
var now = new Date();
var strDateTime = [
    [AddZero(now.getDate()), AddZero(now.getMonth() + 1), now.getFullYear()].join("/"), [AddZero(now.getHours()), AddZero(now.getMinutes())].join(":"), now.getHours() >= 12 ? "PM" : "AM"].join(" ");
var Database = 'ProductionDatabase';
var windowName = 'Report';
var AuditPrintDetailEverypage = UserLoggedIn + ' Time : ' + strDateTime;
var AuditPrintDetailLastPage = '      Report ' + ' Source Database: ';
var WinPrint = window.open(windowUrl, windowName, 'left=300,top=300,right=500,bottom=500,width=1000,height=500,scrollbars=1');
WinPrint.document.write('<' + 'html' + '><head><link href="assets/css/Print.css" rel="stylesheet" type="text/css" /><title>' + AuditPrintDetailEverypage + '</title> </head><' + 'body  style="background:none !important"' + '>');
WinPrint.document.write(printContent.innerHTML);
WinPrint.document.write('          ' + AuditPrintDetailLastPage);
WinPrint.document.write('<' + '/body' + '><' + '/html' + '>');
WinPrint.document.close();

if (window.opera) {
    window.onload = function () {
        window.setTimeout(function () {
            window.print;
        }, 500);
    }
} else {
    WinPrint.focus();
    WinPrint.print();
    WinPrint.close();
}

1 个答案:

答案 0 :(得分:0)

看起来()对于歌剧而言对某些网站来说很重要。 希望这有助于其他人。回答上述人员的信用。

                    if (window.opera) {


                        WinPrint.onload = function () {
                            WinPrint.setTimeout(function () {
                                WinPrint.print();
                            }, 500);
                        }