Search code examples
c#.netasp.netprintingsystem.printing

Printing from ASP.NET to a network printer


I need to send documents to a network printer (\myserver\myprinter). I'm using the System.Printing classes to print, and it works fine when it's from a Windows Service, but from an ASP.NET app, it's only able to print to local printers, not network printers. The error I'm getting is "Printer Name is not valid" This is what I'm using to get the printer name:

public string PrinterName
{
   using (LocalPrintServer server = new LocalPrintServer())
   return server.GetPrintQueue(@"\\myserver\myprinter");
}

What are my options here? Is this a permissions problem?


Solution

  • There are issues with credentials that you could solve by impersonation or elevating rights of the user the web app is running under.

    However, we did it by adding the network printer as a printer on the server (add printer dialogue on server) and having the job sent to that printer.

    We used the Printing.PrintDocument like so (Code in VB)....

    Public Class SpecialReportPrintJob
      Inherits Printing.PrintDocument
    
    Protected Overrides Sub OnBeginPrint(ByVal ev as Printing.PrintEventArgs)
      MyBase.OnBeginPrint(ev)
    
      Me.PrinterSettings.PrinterName = "PrinterNameUsedOnServer"
    
      'setup rest of stuff....
    End Sub  
    End Class
    'And we then call it like so
    Dim printSpecialReport as new SpecialReportPrintJob()
    printSpecialReport.Print()