0
我有一個ASP.NET應用程序(它使用DevExpress v 10.2)。在頁面上有一個名爲PRINT的按鈕。當點擊該按鈕時,應用程序應該: 1.從其數據庫提取文件。該文件爲PDF或JPEG(應用程序僅在運行時才知道它的類型) 2.打印輸出文件。一些'預覽'應該顯示給用戶在這期間如何從頁面打印PDF或圖像
問題是 - 如何實現這個(項目'2')?有一個衆所周知的方法來打印使用JavaScript像下面的圖片:
function DisplayPrintPopup(html) {
var win = window.open('', 'popup', 'toolbar=no,menubar=no,width=500,height=500,scrollbars=yes');
self.focus();
win.document.open();
win.document.write('<head><style></style></head><body>' + html + '<style></style></head><body>');
win.document.close();
win.print();
win.close();
}
這可能是好的我。但是當一個文件是PDF時該怎麼辦?