如何将参数和数据源同时传递给rdlc报告

问题描述 投票:0回答:1
    private void Test_Load(object sender, EventArgs e)
    {
        try
        {

            string sql = "[companyid]   ,[companyname] ,[Shopid]   ,[shopname],[shopaddress],[shopphone],[fax], [footermsg],[footermsg_ar] FROM [shop] Where id  = '1' ";
            DataAccess.ExecuteSQL(sql);
            DataTable dt = DataAccess.GetDataTable(sql);
            ReportDataSource reportDSDetail = new ReportDataSource("DataSet1", dt);

            string sqli = "SELECT [logo] FROM [logo] Where id= '1' ";
            DataAccess.ExecuteSQL(sql);
            DataTable dts = DataAccess.GetDataTable(sql);
            string path = Application.StartupPath + @"\LOGO\";
            string imagePath = path + dts.Rows[0].ItemArray[0].ToString();
            ReportParameter pImageUrl = new ReportParameter("pName", "file://" + imagePath, true);
            this.reportViewer1.LocalReport.ReportPath =path+@"Rep.rdlc";
            this.reportViewer1.LocalReport.EnableExternalImages = true;
            this.reportViewer1.LocalReport.SetParameters(new ReportParameter[] { pImageUrl });
            this.reportViewer1.LocalReport.DataSources.Add(reportDSDetail);
            this.reportViewer1.RefreshReport();

        }
        catch (Exception ex)
        {
            MessageBox.Show("Exception=" + ex);
        }
    }

在RDLC报告中,我创建了一个名为pName的参数,并与图像连接并配置外部参数。我需要在报告中获取参数和数据源,我尝试了很多方法但失败了。请帮我解决这个问题,以获取RDLC报告中的两个参数和数据源

c# asp.net report rdlc
1个回答
0
投票

首先你需要去Report Data并添加像这样的Parameters

enter image description here

添加参数Right Click on textbox后,你要在其中显示parameters - > Click Expression并添加Expression像这样

enter image description here

其中Showdtparameter的名字

并且从code behind像这样一起传递data sourceparameters

ReportDataSource rds = new ReportDataSource();//pass Your Datasource
ReportViewer1.LocalReport.DataSources.Clear();
ReportParameter p1 = new ReportParameter("Showdt", "Date : " + DateTime.Now.ToShortDateString());
//you can add multiple parameter like this
this.ReportViewer1.LocalReport.SetParameters(new ReportParameter[]{p1}); 
 ReportViewer1.LocalReport.DataSources.Add(rds);
 ReportViewer1.LocalReport.Refresh(); 

you can check this

© www.soinside.com 2019 - 2024. All rights reserved.