我正在使用下面的代码打印带有会话文本的 pdf。有没有办法让它只保存到一个位置而不是打印?
<script type="text/javascript">
<!--
function printTextBox() {
var windowUrl = 'about:blank';
var windowName = 'Print' + new Date().getTime();
var printWindow = window.open(windowUrl, windowName, 'left=50000,top=50000,width=0,height=0');
printWindow.document.write('Last Name:<%= Session("DoctorLastName") %>');
printWindow.document.close();
printWindow.focus();
printWindow.print();
printWindow.close();
}
// -->
</script>