我正在使用下面的代码打印 ASPX 网页。它正在工作。但是样式表不适用于此模板。请帮我将样式应用于打印页面。
<script language="javascript">
function printpr() {
var panel = document.getElementById("<%= all.ClientID %>");
var printWindow = window.open('', '', 'height=400,width=800');
printWindow.document.write('<link rel="stylesheet" type="text/css" href="style.css" media="print"/>\n')
printWindow.document.write(panel.innerHTML);
printWindow.document.close();
setTimeout(function () {
printWindow.print();
}, 500);
return false;
}
</script>