服务器系统中未安装打印机

本文关键字:安装 打印机 系统 服务器 | 更新日期: 2023-09-27 17:56:20

打印在服务器系统中不起作用。它显示错误消息。

System.Drawing.Printing.InvalidPrinterException:服务器系统中未安装任何打印机。

public void print()
{
    SC.Open();
    SqlCommand cmd = new SqlCommand("select * from converstion where status='A'", SC);
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    DataTable datatable = new DataTable();
    da.Fill(datatable);
    ReportDocument crreport = new ReportDocument();
    crreport.Load(Server.MapPath("~/Conversion.rpt"));       crreport.SetDataSource(datatable);
    crreport.PrintToPrinter(1, false, 0, 0);
    SC.Close();

服务器系统中未安装打印机

看起来您必须在服务器上安装打印机驱动程序。

我也收到了此错误,因为用户帐户无法访问打印机。