如何打印到远程打印机?

时间:2013-06-13 12:10:43

标签: asp.net

我需要打印到在公共IP中配置的远程打印机。我怎样才能做到这一点?

我们的应用程序托管在AppHarbor和打印机的另一个位置。

1 个答案:

答案 0 :(得分:1)

您可以使用 WMI 使用此msdn WMI Tasks: Printers and Printing文档。

  

将新的打印机连接添加到远程计算机?

strComputer = "atl-ws-01"
Set objWMIService = GetObject( _
    "winmgmts:{impersonationLevel=Impersonate}!\\" & _
    strComputer & "\root\cimv2")
Set objPrinter = objWMIService.Get("Win32_Printer")
errReturn = objPrinter.AddPrinterConnection _
    ("\\PrintServer1\ArtDepartmentPrinter")

请查看以下链接以获取更多参考:
Remote Printing
Print to a remote printer
print on remote printer

来源:来自参考链接

不确定我是否理解正确。他们的现场计算机是否连接到网络打印机?

如果是,只需在打印按钮上使用JavaScript。

这就是我在打印按钮上所做的:

<!--Java Script Function -->
<script type="text/javascript">
<!--
    function printClicked() {
        document.getElementById('printButton').style.display='none';
        document.getElementById('button1').style.display='none';
        if (document.getElementById('viewButton'))
            document.getElementById('viewButton').style.display='none';
        
        window.print();
        return false;
    }
// -->
</script>

将该功能添加到您获得的按钮。

<input type="button" id="printButton" style="width:120px" runat="server" onclick="printClicked()" value="PRINT">

希望这些参考帮助。