日付範囲 (開始日と終了日) に基づいてデータを表示するレポートがあります。これらは、データセットに供給されるパラメーターです。これらのパラメーターを傍受してレポートにフィードする方法はありますか?
これが私のコードです:
reportViewer1.LocalReport.DataSources.Clear();
ReportDataSource rds2 = new ReportDataSource("DataSet1", ods);
reportViewer1.LocalReport.DataSources.Add(rds2);
ods.SelectMethod = "GetTransactionByDateRange";
ods.TypeName = "ConsumablesTransactionLogBLL";
ods.SelectParameters.Add("sd", System.TypeCode.String, dateRange[0]);
ods.SelectParameters.Add("ed", System.TypeCode.String, dateRange[1]);
reportViewer1.LocalReport.ReportPath = Server.MapPath("~/Reports/Consumables_By_Range.rdlc");
ありがとうございました、
りしょう