c#vs2012 rdlc,缺少报告参数

时间:2014-11-19 06:53:13

标签: c#

我在c#(vs2012)中有一个简单的报告(rdlc,本地模式),在报告设计模式下找不到“参数”。只有“变量”,我需要一些帮助来访问它们。

在VS2008中,我在报表设计模式下创建一个新参数,然后分配到报表文本框,并按代码访问:

string a = "Hello";
ReportParameter p1 = new ReportParameter("my_parameter", a);
this.reportViewer1.LocalReport.SetParameters(p1);

2012年rdlc中的参数在哪里? 或者我如何通过代码访问在设计模式下创建的rdlc“变量”?

谢谢提前,

0 个答案:

没有答案