0

これが私のコードです

 ReportDocument rpt = new ReportDocument();
                rpt.Load(Server.MapPath("Reports/report.rpt"));
                rpt.PrintToPrinter(1, true, 0, 0);

2 行目で「[CrystalDecisions.CrystalReports.Engine.LogOnException] = {"\rError in File C:\Users\Prince\AppData\Local\Temp\report {1D0F4138-EB7B-4725-8B41-DCF38019B2C9}.rpt: \n接続できません: ログオン パラメータが正しくありません。"}" . 私が見逃したものはありますか...

4

1 に答える 1

0

パスにレポートを設定しないでください

ReportDocument rpt = new ReportDocument();
                rpt.Load(Server.MapPath("/report.rpt"));
                rpt.PrintToPrinter(1, true, 0, 0);
于 2012-08-24T23:30:26.593 に答える