0
我有一個基於日期範圍顯示數據的報告:開始日期和結束日期。這些是饋送給數據集的參數。有沒有辦法攔截這些參數並將它們提供給報告?捕獲一個SQL參數並將其顯示在asp.net報告中
這裏是我的代碼:
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");
謝謝
Risho