私はVisual Studio 2008を使用していますが、Crystalレポートで問題が発生しています。 印刷ボタンをクリックすると、ページが見つからないのでポップアップが表示されます。ポップアップURLがASP.NET - Crystal Report Viewerの印刷ボタンがASP.NETで動作しない
である私はcrystalexportdialog.htmファイルがこのパスに存在することを確認しています:C:\ WINDOWS \ Microsoft.NET \ Frameworkの\ v2.0.50727の\ ASP.NETClientFiles \ CrystalReportWebFormViewer4 \ HTML \ crystalexportdialog。 htm
これは私のコードon page_loadイベントです。
ReportDocument rptDoc = new ReportDocument();
ReportProjectProperties ds = new ReportProjectProperties();// .xsd file name
DataTable dt = DbUtility.GetProjectWorksheets(15);
ds.Tables[0].Merge(dt);
// Your .rpt file path will be below
rptDoc.Load(Server.MapPath("../Reports/report1.rpt"));
//set dataset to the report viewer.
rptDoc.SetDataSource(ds);
CrystalReportViewer1.ReportSource = rptDoc;
ありがとうございます。